MailChimp for WordPress - Version 2.1.3

Version Description

  • September 15, 2014 =

Improvements

  • Updated Spanish and Dutch translations
  • Fixed missing text domains
  • Removed obsolete code in upgrade routine
  • All settings are now properly sanitized before being stored.

Additions

  • Added Slovak language files, thanks to Henrich Koszegi - Webworks.sk.
Download this release

Release Info

Developer DvanKooten
Plugin Icon 128x128 MailChimp for WordPress
Version 2.1.3
Comparing to
See all releases

Code changes from version 2.1.2 to 2.1.3

includes/class-admin.php CHANGED
@@ -25,10 +25,27 @@ class MC4WP_Lite_Admin
25
 
26
  // did the user click on upgrade to pro link?
27
  if( isset( $_GET['page'] ) && $_GET['page'] === 'mc4wp-lite-upgrade' && false === headers_sent() ) {
28
- header("Location: https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=menu-upgrade-link");
29
  exit;
30
  }
 
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
 
34
  /**
@@ -69,7 +86,7 @@ class MC4WP_Lite_Admin
69
 
70
  // register settings
71
  register_setting( 'mc4wp_lite_settings', 'mc4wp_lite', array( $this, 'validate_settings' ) );
72
- register_setting( 'mc4wp_lite_checkbox_settings', 'mc4wp_lite_checkbox');
73
  register_setting( 'mc4wp_lite_form_settings', 'mc4wp_lite_form', array( $this, 'validate_form_settings' ) );
74
 
75
  // load the plugin text domain
@@ -77,6 +94,8 @@ class MC4WP_Lite_Admin
77
 
78
  // store whether this plugin has the BWS captcha plugin running (http://wordpress.org/plugins/captcha/)
79
  $this->has_captcha_plugin = function_exists( 'cptch_display_captcha_custom' );
 
 
80
  }
81
 
82
  /**
@@ -108,7 +127,7 @@ class MC4WP_Lite_Admin
108
  return $links;
109
  }
110
 
111
- $settings_link = '<a href="admin.php?page=mc4wp-lite">'. __( 'Settings' ) . '</a>';
112
  array_unshift( $links, $settings_link );
113
  return $links;
114
  }
@@ -154,7 +173,7 @@ class MC4WP_Lite_Admin
154
  public function validate_settings( $settings ) {
155
 
156
  if( isset( $settings['api_key'] ) ) {
157
- $settings['api_key'] = trim( strip_tags( $settings['api_key'] ) );
158
  }
159
 
160
  return $settings;
@@ -168,10 +187,86 @@ class MC4WP_Lite_Admin
168
  */
169
  public function validate_form_settings( $settings ) {
170
 
171
- if( isset( $settings['markup'] ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
 
173
- // strip form tags (to prevent people from adding them)
174
- $settings['markup'] = preg_replace( '/<\/?form(.|\s)*?>/i', '', $settings['markup'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
 
176
  }
177
 
@@ -229,11 +324,11 @@ class MC4WP_Lite_Admin
229
  }
230
 
231
  if ( class_exists( 'Easy_Digital_Downloads' ) ) {
232
- $checkbox_plugins['_edd_checkout'] = "(PRO ONLY) Easy Digital Downloads checkout";
233
  }
234
 
235
  if ( class_exists( 'Woocommerce' ) ) {
236
- $checkbox_plugins['_woocommerce_checkout'] = "(PRO ONLY) WooCommerce checkout";
237
  }
238
 
239
  return $checkbox_plugins;
25
 
26
  // did the user click on upgrade to pro link?
27
  if( isset( $_GET['page'] ) && $_GET['page'] === 'mc4wp-lite-upgrade' && false === headers_sent() ) {
28
+ wp_redirect( 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=menu-upgrade-link' );
29
  exit;
30
  }
31
+ }
32
 
33
+ /**
34
+ * Upgrade routine
35
+ */
36
+ private function upgrade() {
37
+
38
+ // Only run if db option is at older version than code constant
39
+ $db_version = get_option( 'mc4wp_lite_version', 0 );
40
+ if( version_compare( MC4WP_LITE_VERSION, $db_version, '<=' ) ) {
41
+ return false;
42
+ }
43
+
44
+ // define a constant that we're running an upgrade
45
+ define( 'MC4WP_DOING_UPGRADE', true );
46
+
47
+ // update code version
48
+ update_option( 'mc4wp_lite_version', MC4WP_LITE_VERSION );
49
  }
50
 
51
  /**
86
 
87
  // register settings
88
  register_setting( 'mc4wp_lite_settings', 'mc4wp_lite', array( $this, 'validate_settings' ) );
89
+ register_setting( 'mc4wp_lite_checkbox_settings', 'mc4wp_lite_checkbox', array( $this, 'validate_checkbox_settings' ) );
90
  register_setting( 'mc4wp_lite_form_settings', 'mc4wp_lite_form', array( $this, 'validate_form_settings' ) );
91
 
92
  // load the plugin text domain
94
 
95
  // store whether this plugin has the BWS captcha plugin running (http://wordpress.org/plugins/captcha/)
96
  $this->has_captcha_plugin = function_exists( 'cptch_display_captcha_custom' );
97
+
98
+ $this->upgrade();
99
  }
100
 
101
  /**
127
  return $links;
128
  }
129
 
130
+ $settings_link = '<a href="admin.php?page=mc4wp-lite">'. __( 'Settings', 'mailchimp-for-wp' ) . '</a>';
131
  array_unshift( $links, $settings_link );
132
  return $links;
133
  }
173
  public function validate_settings( $settings ) {
174
 
175
  if( isset( $settings['api_key'] ) ) {
176
+ $settings['api_key'] = sanitize_text_field( $settings['api_key'] );
177
  }
178
 
179
  return $settings;
187
  */
188
  public function validate_form_settings( $settings ) {
189
 
190
+ // If settings is malformed, just store an empty array.
191
+ if( ! is_array( $settings ) ) {
192
+ return array();
193
+ }
194
+
195
+ // Loop through new settings
196
+ foreach( $settings as $key => $value ) {
197
+
198
+ // sanitize text fields
199
+ if( substr( $key, 0, 5 ) === 'text_' ) {
200
+ $settings[ $key ] = strip_tags( trim( $value ), '<a><b><strong><em><br><i><u><pre><script><abbr><strike>' );
201
+ continue;
202
+ }
203
+
204
+ switch( $key ) {
205
+
206
+ // sanitize markup textarea
207
+ case 'markup' :
208
+ $settings[ $key ] = preg_replace( '/<\/?form(.|\s)*?>/i', '', $value );
209
+ break;
210
+
211
+ // sanitize select
212
+ case 'css':
213
+ $settings[ $key ] = sanitize_text_field( $value );
214
+ break;
215
+
216
+ // sanitize radio & checkbox inputs
217
+ case 'double_optin':
218
+ case 'hide_after_success':
219
+ $settings[ $key ] = ( $value == 1 ) ? 1 : 0;
220
+ break;
221
+ }
222
+
223
+ }
224
+
225
+ return $settings;
226
+ }
227
 
228
+ /**
229
+ * Validates the Checkbox settings
230
+ *
231
+ * @param array $settings
232
+ * @return array
233
+ */
234
+ public function validate_checkbox_settings( $settings ) {
235
+
236
+ // If settings is malformed, just store an empty array.
237
+ if( ! is_array( $settings ) ) {
238
+ return array();
239
+ }
240
+
241
+ // Loop through new settings
242
+ foreach( $settings as $key => $value ) {
243
+
244
+ switch( $key ) {
245
+
246
+ case 'lists':
247
+ if( ! is_array( $value ) ) {
248
+ $settings[ $key ] = array();
249
+ } else {
250
+ foreach( $settings[ $key ] as $list_key => $list_value ) {
251
+ $settings[ $key ][$list_key] = sanitize_text_field( $list_value );
252
+ }
253
+ }
254
+ break;
255
+
256
+ // sanitize text inputs
257
+ case 'label' :
258
+ $settings[ $key ] = strip_tags( trim( $value ), '<a><b><strong><em><br><i><u><pre><script><abbr><strike>' );
259
+ break;
260
+
261
+ // sanitize radio & checkbox inputs
262
+ case 'double_optin':
263
+ case 'show_at_comment_form':
264
+ case 'show_at_registration_form':
265
+ case 'precheck':
266
+ case 'css':
267
+ $settings[ $key ] = ( $value == 1 ) ? 1 : 0;
268
+ break;
269
+ }
270
 
271
  }
272
 
324
  }
325
 
326
  if ( class_exists( 'Easy_Digital_Downloads' ) ) {
327
+ $checkbox_plugins['_edd_checkout'] = __( '(PRO ONLY)', 'mailchimp-for-wp' ) . ' ' . "Easy Digital Downloads checkout";
328
  }
329
 
330
  if ( class_exists( 'Woocommerce' ) ) {
331
+ $checkbox_plugins['_woocommerce_checkout'] = __( '(PRO ONLY)', 'mailchimp-for-wp' ) . ' ' . "WooCommerce checkout";
332
  }
333
 
334
  return $checkbox_plugins;
includes/class-api.php CHANGED
@@ -53,6 +53,7 @@ class MC4WP_Lite_API {
53
  * @param string $message
54
  */
55
  private function show_error( $message ) {
 
56
  if( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
57
  return false;
58
  }
53
  * @param string $message
54
  */
55
  private function show_error( $message ) {
56
+
57
  if( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
58
  return false;
59
  }
includes/class-form-manager.php CHANGED
@@ -157,7 +157,7 @@ class MC4WP_Lite_Form_Manager {
157
  // Process fields, if not submitted or not successfull or hide_after_success disabled
158
  if( ! $was_submitted || ! $opts['hide_after_success'] || ! $this->form_request->is_successful() ) {
159
  // add form fields from settings
160
- $visible_fields = __( $opts['markup'] );
161
 
162
  // replace special values
163
  $visible_fields = str_ireplace( array( '%N%', '{n}' ), $this->form_instance_number, $visible_fields );
157
  // Process fields, if not submitted or not successfull or hide_after_success disabled
158
  if( ! $was_submitted || ! $opts['hide_after_success'] || ! $this->form_request->is_successful() ) {
159
  // add form fields from settings
160
+ $visible_fields = __( $opts['markup'], 'mailchimp-for-wp' );
161
 
162
  // replace special values
163
  $visible_fields = str_ireplace( array( '%N%', '{n}' ), $this->form_instance_number, $visible_fields );
includes/class-form-request.php CHANGED
@@ -196,13 +196,14 @@ class MC4WP_Lite_Form_Request {
196
 
197
  // set key: grouping id or name
198
  if ( is_numeric( $grouping_id_or_name ) ) {
199
- $grouping['id'] = $grouping_id_or_name;
200
  } else {
201
- $grouping['name'] = $grouping_id_or_name;
202
  }
203
 
204
  // comma separated list should become an array
205
  if( ! is_array( $groups ) ) {
 
206
  $groups = explode( ',', $groups );
207
  }
208
 
@@ -238,12 +239,12 @@ class MC4WP_Lite_Form_Request {
238
  $key = trim( strtoupper( $key ) );
239
 
240
  // Skip field if it starts with _ or if it's in ignored_fields array
241
- if( $key[0] === '_' || in_array( strtoupper( $key ), $ignored_fields ) ) {
242
  continue;
243
  }
244
 
245
- // Sanitize value
246
- $value = ( is_scalar( $value ) ) ? trim( $value ) : $value;
247
 
248
  // Add value to array
249
  $data[ $key ] = $value;
@@ -276,8 +277,8 @@ class MC4WP_Lite_Form_Request {
276
 
277
  $strpos = strpos($merge_vars['NAME'], ' ');
278
  if( $strpos !== false ) {
279
- $merge_vars['FNAME'] = substr($merge_vars['NAME'], 0, $strpos);
280
- $merge_vars['LNAME'] = substr($merge_vars['NAME'], $strpos);
281
  } else {
282
  $merge_vars['FNAME'] = $merge_vars['NAME'];
283
  }
@@ -417,7 +418,7 @@ class MC4WP_Lite_Form_Request {
417
 
418
  // get email type from form
419
  if( isset( $_POST['_mc4wp_email_type'] ) ) {
420
- $email_type = trim( $_POST['_mc4wp_email_type'] );
421
  }
422
 
423
  // allow plugins to override this email type
@@ -442,7 +443,8 @@ class MC4WP_Lite_Form_Request {
442
 
443
  // make sure lists is an array
444
  if( ! is_array( $lists ) ) {
445
- $lists = array( trim( $lists ) );
 
446
  }
447
 
448
  }
196
 
197
  // set key: grouping id or name
198
  if ( is_numeric( $grouping_id_or_name ) ) {
199
+ $grouping['id'] = absint( $grouping_id_or_name );
200
  } else {
201
+ $grouping['name'] = sanitize_text_field( $grouping_id_or_name );
202
  }
203
 
204
  // comma separated list should become an array
205
  if( ! is_array( $groups ) ) {
206
+ $groups = sanitize_text_field( $groups );
207
  $groups = explode( ',', $groups );
208
  }
209
 
239
  $key = trim( strtoupper( $key ) );
240
 
241
  // Skip field if it starts with _ or if it's in ignored_fields array
242
+ if( $key[0] === '_' || in_array( $key, $ignored_fields ) ) {
243
  continue;
244
  }
245
 
246
+ // Sanitize value if it's scalar
247
+ $value = ( is_scalar( $value ) ) ? sanitize_text_field( $value ) : $value;
248
 
249
  // Add value to array
250
  $data[ $key ] = $value;
277
 
278
  $strpos = strpos($merge_vars['NAME'], ' ');
279
  if( $strpos !== false ) {
280
+ $merge_vars['FNAME'] = substr( $merge_vars['NAME'], 0, $strpos );
281
+ $merge_vars['LNAME'] = substr( $merge_vars['NAME'], $strpos );
282
  } else {
283
  $merge_vars['FNAME'] = $merge_vars['NAME'];
284
  }
418
 
419
  // get email type from form
420
  if( isset( $_POST['_mc4wp_email_type'] ) ) {
421
+ $email_type = sanitize_text_field( $_POST['_mc4wp_email_type'] );
422
  }
423
 
424
  // allow plugins to override this email type
443
 
444
  // make sure lists is an array
445
  if( ! is_array( $lists ) ) {
446
+ $lists = sanitize_text_field( $lists );
447
+ $lists = array( $lists );
448
  }
449
 
450
  }
includes/class-plugin.php CHANGED
@@ -23,11 +23,6 @@ class MC4WP_Lite {
23
  */
24
  private $api = null;
25
 
26
- /**
27
- * @var string Code version number
28
- */
29
- private $code_version = "1.0";
30
-
31
  /**
32
  * Constructor
33
  */
@@ -35,12 +30,6 @@ class MC4WP_Lite {
35
 
36
  spl_autoload_register( array( $this, 'autoload') );
37
 
38
- // Check whether to run the upgrade routine
39
- $db_code_version = get_option( 'mc4wp_code_version', 0 );
40
- if( version_compare( $this->code_version, $db_code_version, "<" ) ) {
41
- $this->upgrade();
42
- }
43
-
44
  // checkbox
45
  $this->checkbox_manager = new MC4WP_Lite_Checkbox_Manager();
46
 
@@ -122,80 +111,6 @@ class MC4WP_Lite {
122
  return $this->api;
123
  }
124
 
125
- private function upgrade() {
126
- $options = get_option( 'mc4wp_lite' );
127
-
128
- // transfer widget to new id?
129
- if(get_option('mc4wp_transfered_old_widgets', false) == false) {
130
- $sidebars_widgets = get_option('sidebars_widgets');
131
-
132
- if($sidebars_widgets && is_array($sidebars_widgets)) {
133
- foreach($sidebars_widgets as $key => $widgets)
134
- {
135
- if(!is_array($widgets)) { continue; }
136
- foreach($widgets as $subkey => $widget_name) {
137
-
138
- if(substr($widget_name, 0, 17) == 'mc4wp_lite_widget') {
139
-
140
- $new_widget_name = str_replace('mc4wp_lite_widget', 'mc4wp_widget', $widget_name);
141
- // active widget found, just change name?
142
- $sidebars_widgets[$key][$subkey] = $new_widget_name;
143
- update_option('sidebars_widgets', $sidebars_widgets);
144
- update_option('widget_mc4wp_widget', get_option('widget_mc4wp_lite_widget') );
145
- break;
146
- }
147
- }
148
- }
149
- }
150
-
151
- update_option('mc4wp_transfered_old_widgets', true);
152
- }
153
-
154
-
155
- // transfer old options to new options format
156
- if (isset( $options['mailchimp_api_key'] )) {
157
-
158
- $new_options = array(
159
- 'general' => array(),
160
- 'checkbox' => array(),
161
- 'form' => array()
162
- );
163
-
164
- $new_options['general']['api_key'] = $options['mailchimp_api_key'];
165
-
166
- foreach ( $options as $key => $value ) {
167
- $_pos = strpos( $key, '_' );
168
-
169
- $first_key = substr( $key, 0, $_pos );
170
- $second_key = substr( $key, $_pos + 1 );
171
-
172
- if ( isset( $new_options[$first_key] ) ) {
173
-
174
- // change option name
175
- if ( $second_key == 'show_at_bp_form' ) {
176
- $second_key = 'show_at_buddypress_form';
177
- }
178
-
179
- // change option name
180
- if ( $second_key == 'show_at_ms_form' ) {
181
- $second_key = 'show_at_multisite_form';
182
- }
183
-
184
- // set value into new option name
185
- $new_options[$first_key][$second_key] = $value;
186
- }
187
-
188
- }
189
-
190
- update_option( 'mc4wp_lite', $new_options['general'] );
191
- update_option( 'mc4wp_lite_checkbox', $new_options['checkbox'] );
192
- update_option( 'mc4wp_lite_form', $new_options['form'] );
193
- } // end transfer options
194
-
195
- // update code version
196
- update_option( 'mc4wp_code_version', $this->code_version );
197
- }
198
-
199
  public function register_widget()
200
  {
201
  register_widget( 'MC4WP_Lite_Widget' );
23
  */
24
  private $api = null;
25
 
 
 
 
 
 
26
  /**
27
  * Constructor
28
  */
30
 
31
  spl_autoload_register( array( $this, 'autoload') );
32
 
 
 
 
 
 
 
33
  // checkbox
34
  $this->checkbox_manager = new MC4WP_Lite_Checkbox_Manager();
35
 
111
  return $this->api;
112
  }
113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  public function register_widget()
115
  {
116
  register_widget( 'MC4WP_Lite_Widget' );
includes/class-widget.php CHANGED
@@ -31,6 +31,7 @@ class MC4WP_Lite_Widget extends WP_Widget {
31
  * @param array $instance Saved values from database.
32
  */
33
  public function widget( $args, $instance ) {
 
34
  $title = apply_filters( 'widget_title', $instance['title'] );
35
 
36
  echo $args['before_widget'];
@@ -57,10 +58,10 @@ class MC4WP_Lite_Widget extends WP_Widget {
57
  * @param array $instance Previously saved values from database.
58
  */
59
  public function form( $instance ) {
60
- $title = isset($instance['title']) ? $instance['title'] : __('Newsletter', 'mailchimp-for-wp');
61
  ?>
62
  <p>
63
- <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
64
  <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
65
  </p>
66
  <p class="help">
@@ -81,7 +82,7 @@ class MC4WP_Lite_Widget extends WP_Widget {
81
  */
82
  public function update( $new_instance, $old_instance ) {
83
  $instance = array();
84
- $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
85
  return $instance;
86
  }
87
 
31
  * @param array $instance Saved values from database.
32
  */
33
  public function widget( $args, $instance ) {
34
+
35
  $title = apply_filters( 'widget_title', $instance['title'] );
36
 
37
  echo $args['before_widget'];
58
  * @param array $instance Previously saved values from database.
59
  */
60
  public function form( $instance ) {
61
+ $title = isset( $instance['title'] ) ? $instance['title'] : __( 'Newsletter', 'mailchimp-for-wp' );
62
  ?>
63
  <p>
64
+ <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'mailchimp-for-wp' ); ?></label>
65
  <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
66
  </p>
67
  <p class="help">
82
  */
83
  public function update( $new_instance, $old_instance ) {
84
  $instance = array();
85
+ $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? sanitize_text_field( $new_instance['title'] ) : '';
86
  return $instance;
87
  }
88
 
includes/integrations/class-cf7.php CHANGED
@@ -41,7 +41,7 @@ class MC4WP_CF7_Integration extends MC4WP_General_Integration {
41
  * @return array
42
  */
43
  public function alter_cf7_data( $data = array() ) {
44
- $data['mc4wp_checkbox'] = $this->checkbox_was_checked() ? __( 'Yes' ) : __( 'No' );
45
  return $data;
46
  }
47
 
41
  * @return array
42
  */
43
  public function alter_cf7_data( $data = array() ) {
44
+ $data['mc4wp_checkbox'] = $this->checkbox_was_checked() ? __( 'Yes', 'mailchimp-for-wp' ) : __( 'No', 'mailchimp-for-wp' );
45
  return $data;
46
  }
47
 
includes/integrations/class-integration.php CHANGED
@@ -77,10 +77,10 @@ abstract class MC4WP_Integration {
77
  $label = $args['labels'][0];
78
  } else if ( isset( $opts['text_' . $this->type . '_label'] ) && ! empty( $opts['text_' . $this->type . '_label'] ) ) {
79
  // custom label text was set
80
- $label = __( $opts['text_' . $this->type . '_label'] );
81
  } else {
82
  // default label text
83
- $label = __( $opts['label'] );
84
  }
85
 
86
  // replace label variables
77
  $label = $args['labels'][0];
78
  } else if ( isset( $opts['text_' . $this->type . '_label'] ) && ! empty( $opts['text_' . $this->type . '_label'] ) ) {
79
  // custom label text was set
80
+ $label = __( $opts['text_' . $this->type . '_label'], 'mailchimp-for-wp' );
81
  } else {
82
  // default label text
83
+ $label = __( $opts['label'], 'mailchimp-for-wp' );
84
  }
85
 
86
  // replace label variables
includes/views/checkbox-settings.php CHANGED
@@ -35,7 +35,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
35
  ?><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
36
  } else { ?>
37
  <td class="nowrap">
38
- <?php foreach($lists as $list) {
39
  ?><label><input type="checkbox" name="mc4wp_lite_checkbox[lists][<?php echo esc_attr( $list->id ); ?>]" value="<?php echo esc_attr($list->id); ?>" <?php checked( array_key_exists( $list->id, $opts['lists'] ), true ); ?>> <?php echo esc_html( $list->name ); ?></label><br /><?php
40
  } ?>
41
  </td>
@@ -46,7 +46,16 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
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>
@@ -57,9 +66,9 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
57
  <tr valign="top">
58
  <th scope="row"><?php _e( 'Add the checkbox to these forms', 'mailchimp-for-wp' ); ?></th>
59
  <td class="nowrap">
60
- <?php foreach($this->get_checkbox_compatible_plugins() as $code => $name) {
61
 
62
- if($code[0] !== '_') {
63
  ?><label><input name="mc4wp_lite_checkbox[show_at_<?php echo $code; ?>]" value="1" type="checkbox" <?php checked( $opts['show_at_' . $code], 1 ); ?>> <?php echo esc_html( $name ); ?></label><br /><?php
64
  } else {
65
  ?><label class="pro-feature"><input type="checkbox" disabled> <?php echo esc_html( $name ); ?></label><br /><?php
@@ -79,12 +88,12 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
79
  </tr>
80
  <tr valign="top">
81
  <th scope="row"><?php _e( 'Pre-check the checkbox?', 'mailchimp-for-wp' ); ?></th>
82
- <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[precheck]" value="1" <?php checked( $opts['precheck'], 1 ); ?> /> <?php _e( 'Yes' ); ?></label> &nbsp; <label><input type="radio" name="mc4wp_lite_checkbox[precheck]" value="0" <?php checked( $opts['precheck'], 0 ); ?> /> <?php _e( 'No' ); ?></label></td>
83
  <td class="desc"></td>
84
  </tr>
85
  <tr valign="top">
86
  <th scope="row"><?php _e( 'Load some default CSS?', 'mailchimp-for-wp' ); ?></th>
87
- <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[css]" value="1" <?php checked( $opts['css'], 1 ); ?> /> <?php _e( 'Yes' ); ?></label> &nbsp; <label><input type="radio" name="mc4wp_lite_checkbox[css]" value="0" <?php checked( $opts['css'], 0 ); ?> /> <?php _e( 'No' ); ?></label></td>
88
  <td class="desc"><?php _e( 'Select "yes" if the checkbox appears in a weird place.', 'mailchimp-for-wp' ); ?></td>
89
  </tr>
90
 
35
  ?><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
36
  } else { ?>
37
  <td class="nowrap">
38
+ <?php foreach( $lists as $list ) {
39
  ?><label><input type="checkbox" name="mc4wp_lite_checkbox[lists][<?php echo esc_attr( $list->id ); ?>]" value="<?php echo esc_attr($list->id); ?>" <?php checked( array_key_exists( $list->id, $opts['lists'] ), true ); ?>> <?php echo esc_html( $list->name ); ?></label><br /><?php
40
  } ?>
41
  </td>
46
  </tr>
47
  <tr valign="top">
48
  <th scope="row"><?php _e( 'Double opt-in?', 'mailchimp-for-wp' ); ?></th>
49
+ <td class="nowrap">
50
+ <label>
51
+ <input type="radio" name="mc4wp_lite_checkbox[double_optin]" value="1" <?php checked( $opts['double_optin'], 1 ); ?> />
52
+ <?php _e( 'Yes', 'mailchimp-for-wp' ); ?>
53
+ </label> &nbsp;
54
+ <label>
55
+ <input type="radio" id="mc4wp_checkbox_double_optin_0" name="mc4wp_lite_checkbox[double_optin]" value="0" <?php checked( $opts['double_optin'], 0 ); ?> />
56
+ <?php _e( 'No', 'mailchimp-for-wp' ); ?>
57
+ </label>
58
+ </td>
59
  <td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
60
  </tr>
61
  </table>
66
  <tr valign="top">
67
  <th scope="row"><?php _e( 'Add the checkbox to these forms', 'mailchimp-for-wp' ); ?></th>
68
  <td class="nowrap">
69
+ <?php foreach( $this->get_checkbox_compatible_plugins() as $code => $name ) {
70
 
71
+ if( $code[0] !== '_' ) {
72
  ?><label><input name="mc4wp_lite_checkbox[show_at_<?php echo $code; ?>]" value="1" type="checkbox" <?php checked( $opts['show_at_' . $code], 1 ); ?>> <?php echo esc_html( $name ); ?></label><br /><?php
73
  } else {
74
  ?><label class="pro-feature"><input type="checkbox" disabled> <?php echo esc_html( $name ); ?></label><br /><?php
88
  </tr>
89
  <tr valign="top">
90
  <th scope="row"><?php _e( 'Pre-check the checkbox?', 'mailchimp-for-wp' ); ?></th>
91
+ <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[precheck]" value="1" <?php checked( $opts['precheck'], 1 ); ?> /> <?php _e( 'Yes', 'mailchimp-for-wp' ); ?></label> &nbsp; <label><input type="radio" name="mc4wp_lite_checkbox[precheck]" value="0" <?php checked( $opts['precheck'], 0 ); ?> /> <?php _e( 'No', 'mailchimp-for-wp' ); ?></label></td>
92
  <td class="desc"></td>
93
  </tr>
94
  <tr valign="top">
95
  <th scope="row"><?php _e( 'Load some default CSS?', 'mailchimp-for-wp' ); ?></th>
96
+ <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[css]" value="1" <?php checked( $opts['css'], 1 ); ?> /> <?php _e( 'Yes', 'mailchimp-for-wp' ); ?></label> &nbsp; <label><input type="radio" name="mc4wp_lite_checkbox[css]" value="0" <?php checked( $opts['css'], 0 ); ?> /> <?php _e( 'No', 'mailchimp-for-wp' ); ?></label></td>
97
  <td class="desc"><?php _e( 'Select "yes" if the checkbox appears in a weird place.', 'mailchimp-for-wp' ); ?></td>
98
  </tr>
99
 
includes/views/form-settings.php CHANGED
@@ -24,16 +24,16 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
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>
28
  <option value="default" <?php selected($opts['css'], 'default'); ?><?php selected($opts['css'], 1); ?>><?php _e( 'Yes, load basic form styles', 'mailchimp-for-wp' ); ?></option>
29
- <option disabled>(PRO ONLY) <?php _e( 'Yes, load my custom form styles', 'mailchimp-for-wp' ); ?></option>
30
  <optgroup label="<?php _e( 'Yes, load default form theme', 'mailchimp-for-wp' ); ?>">
31
  <option value="light" <?php selected($opts['css'], 'light'); ?>><?php _e( 'Light Theme', 'mailchimp-for-wp' ); ?></option>
32
  <option value="red" <?php selected($opts['css'], 'red'); ?>><?php _e( 'Red Theme', 'mailchimp-for-wp' ); ?></option>
33
  <option value="green" <?php selected($opts['css'], 'green'); ?>><?php _e( 'Green Theme', 'mailchimp-for-wp' ); ?></option>
34
  <option value="blue" <?php selected($opts['css'], 'blue'); ?>><?php _e( 'Blue Theme', 'mailchimp-for-wp' ); ?></option>
35
  <option value="dark" <?php selected($opts['css'], 'dark'); ?>><?php _e( 'Dark Theme', 'mailchimp-for-wp' ); ?></option>
36
- <option disabled>(PRO ONLY) <?php _e( 'Custom Color Theme', 'mailchimp-for-wp' ); ?></option>
37
  </optgroup>
38
  </select>
39
  </td>
@@ -107,16 +107,25 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
107
  <table class="form-table">
108
  <tr valign="top">
109
  <th scope="row"><?php _e( 'Double opt-in?', 'mailchimp-for-wp' ); ?></th>
110
- <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>
 
 
 
 
 
 
 
 
 
111
  <td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
112
  </tr>
113
  <tr class="pro-feature" valign="top">
114
  <th scope="row"><?php _e( 'Send Welcome Email?', 'mailchimp-for-wp' ); ?></th>
115
  <td class="nowrap">
116
- <input type="radio" readonly />
117
- <label><?php _e( "Yes" ); ?></label> &nbsp;
118
  <input type="radio" checked readonly />
119
- <label><?php _e( "No" ); ?></label> &nbsp;
120
  </td>
121
  <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>
122
  </tr>
@@ -124,19 +133,23 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
124
  <th scope="row"><?php _e( 'Update existing subscribers?', 'mailchimp-for-wp' ); ?></th>
125
  <td class="nowrap">
126
  <input type="radio" readonly />
127
- <label><?php _e("Yes"); ?></label> &nbsp;
128
  <input type="radio" checked readonly />
129
- <label><?php _e( 'No' ); ?></label> &nbsp;
130
  </td>
131
  <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>
132
  </tr>
133
  <tr class="pro-feature" valign="top">
134
  <th scope="row"><?php _e( 'Replace interest groups?', 'mailchimp-for-wp' ); ?></th>
135
  <td class="nowrap">
136
- <input type="radio" checked readonly />
137
- <label><?php _e("Yes"); ?></label> &nbsp;
138
- <input type="radio" readonly />
139
- <label><?php _e("No"); ?></label> &nbsp;
 
 
 
 
140
  </td>
141
  <td class="desc"><?php _e( 'Select "yes" if you want to replace the interest groups with the groups provided instead of adding the provided groups to the member\'s interest groups (only when updating a subscriber).', 'mailchimp-for-wp'); ?></td>
142
  </tr>
@@ -148,20 +161,35 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
148
  <tr valign="top" class="pro-feature">
149
  <th scope="row"><?php _e( 'Enable AJAX form submission?', 'mailchimp-for-wp' ); ?></th>
150
  <td class="nowrap">
151
- <input type="radio" readonly /> <label><?php _e("Yes"); ?></label> &nbsp;
152
- <input type="radio" checked readonly /> <label><?php _e("No"); ?></label>
 
 
 
 
 
 
153
  </td>
154
  <td class="desc"><?php _e( 'Select "yes" if you want to use AJAX (JavaScript) to submit forms.', 'mailchimp-for-wp' ); ?> <a href="https://mc4wp.com/demo/#utm_source=lite-plugin&utm_medium=link&utm_campaign=settings-demo-link">(demo)</a></td>
155
  </tr>
156
  <tr valign="top">
157
- <th scope="row"><label for="mc4wp_form_hide_after_success"><?php _e( 'Hide form after a successful sign-up?', 'mailchimp-for-wp' ); ?></label></th>
158
- <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>
 
 
 
 
 
 
 
 
 
159
  <td class="desc"><?php _e( 'Select "yes" to hide the form fields after a successful sign-up.', 'mailchimp-for-wp' ); ?></td>
160
  </tr>
161
  <tr valign="top">
162
  <th scope="row"><label for="mc4wp_form_redirect"><?php _e( 'Redirect to URL after successful sign-ups', 'mailchimp-for-wp' ); ?></label></th>
163
  <td colspan="2">
164
- <input type="text" class="widefat" name="mc4wp_lite_form[redirect]" id="mc4wp_form_redirect" placeholder="Example: <?php echo esc_attr( site_url('/thank-you/' ) ); ?>"value="<?php echo $opts['redirect']; ?>" />
165
  <p class="help"><?php _e( 'Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, including <code>http://</code>', 'mailchimp-for-wp' ); ?></p>
166
  </td>
167
  </tr>
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', 'mailchimp-for-wp' ); ?></option>
28
  <option value="default" <?php selected($opts['css'], 'default'); ?><?php selected($opts['css'], 1); ?>><?php _e( 'Yes, load basic form styles', 'mailchimp-for-wp' ); ?></option>
29
+ <option disabled><?php _e( '(PRO ONLY)', 'mailchimp-for-wp' ); ?> <?php _e( 'Yes, load my custom form styles', 'mailchimp-for-wp' ); ?></option>
30
  <optgroup label="<?php _e( 'Yes, load default form theme', 'mailchimp-for-wp' ); ?>">
31
  <option value="light" <?php selected($opts['css'], 'light'); ?>><?php _e( 'Light Theme', 'mailchimp-for-wp' ); ?></option>
32
  <option value="red" <?php selected($opts['css'], 'red'); ?>><?php _e( 'Red Theme', 'mailchimp-for-wp' ); ?></option>
33
  <option value="green" <?php selected($opts['css'], 'green'); ?>><?php _e( 'Green Theme', 'mailchimp-for-wp' ); ?></option>
34
  <option value="blue" <?php selected($opts['css'], 'blue'); ?>><?php _e( 'Blue Theme', 'mailchimp-for-wp' ); ?></option>
35
  <option value="dark" <?php selected($opts['css'], 'dark'); ?>><?php _e( 'Dark Theme', 'mailchimp-for-wp' ); ?></option>
36
+ <option disabled><?php _e( '(PRO ONLY)', 'mailchimp-for-wp' ); ?> <?php _e( 'Custom Color Theme', 'mailchimp-for-wp' ); ?></option>
37
  </optgroup>
38
  </select>
39
  </td>
107
  <table class="form-table">
108
  <tr valign="top">
109
  <th scope="row"><?php _e( 'Double opt-in?', 'mailchimp-for-wp' ); ?></th>
110
+ <td class="nowrap">
111
+ <label>
112
+ <input type="radio" name="mc4wp_lite_form[double_optin]" value="1" <?php checked( $opts['double_optin'], 1 ); ?> />
113
+ <?php _e( 'Yes', 'mailchimp-for-wp' ); ?>
114
+ </label> &nbsp;
115
+ <label>
116
+ <input type="radio" name="mc4wp_lite_form[double_optin]" value="0" <?php checked( $opts['double_optin'], 0); ?> />
117
+ <?php _e( 'No', 'mailchimp-for-wp' ); ?>
118
+ </label>
119
+ </td>
120
  <td class="desc"><?php _e( 'Select "yes" if you want people to confirm their email address before being subscribed (recommended)', 'mailchimp-for-wp' ); ?></td>
121
  </tr>
122
  <tr class="pro-feature" valign="top">
123
  <th scope="row"><?php _e( 'Send Welcome Email?', 'mailchimp-for-wp' ); ?></th>
124
  <td class="nowrap">
125
+ <input type="radio" readonly />
126
+ <label><?php _e( "Yes", 'mailchimp-for-wp' ); ?></label> &nbsp;
127
  <input type="radio" checked readonly />
128
+ <label><?php _e( "No", 'mailchimp-for-wp' ); ?></label> &nbsp;
129
  </td>
130
  <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>
131
  </tr>
133
  <th scope="row"><?php _e( 'Update existing subscribers?', 'mailchimp-for-wp' ); ?></th>
134
  <td class="nowrap">
135
  <input type="radio" readonly />
136
+ <label><?php _e("Yes", 'mailchimp-for-wp'); ?></label> &nbsp;
137
  <input type="radio" checked readonly />
138
+ <label><?php _e( 'No', 'mailchimp-for-wp' ); ?></label> &nbsp;
139
  </td>
140
  <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>
141
  </tr>
142
  <tr class="pro-feature" valign="top">
143
  <th scope="row"><?php _e( 'Replace interest groups?', 'mailchimp-for-wp' ); ?></th>
144
  <td class="nowrap">
145
+ <label>
146
+ <input type="radio" checked readonly />
147
+ <?php _e("Yes", 'mailchimp-for-wp'); ?>
148
+ </label> &nbsp;
149
+ <label>
150
+ <input type="radio" readonly />
151
+ <?php _e("No", 'mailchimp-for-wp'); ?>
152
+ </label>
153
  </td>
154
  <td class="desc"><?php _e( 'Select "yes" if you want to replace the interest groups with the groups provided instead of adding the provided groups to the member\'s interest groups (only when updating a subscriber).', 'mailchimp-for-wp'); ?></td>
155
  </tr>
161
  <tr valign="top" class="pro-feature">
162
  <th scope="row"><?php _e( 'Enable AJAX form submission?', 'mailchimp-for-wp' ); ?></th>
163
  <td class="nowrap">
164
+ <label>
165
+ <input type="radio" disabled />
166
+ <?php _e("Yes", 'mailchimp-for-wp'); ?>
167
+ </label> &nbsp;
168
+ <label>
169
+ <input type="radio" checked disabled />
170
+ <?php _e("No", 'mailchimp-for-wp'); ?>
171
+ </label>
172
  </td>
173
  <td class="desc"><?php _e( 'Select "yes" if you want to use AJAX (JavaScript) to submit forms.', 'mailchimp-for-wp' ); ?> <a href="https://mc4wp.com/demo/#utm_source=lite-plugin&utm_medium=link&utm_campaign=settings-demo-link">(demo)</a></td>
174
  </tr>
175
  <tr valign="top">
176
+ <th scope="row"><?php _e( 'Hide form after a successful sign-up?', 'mailchimp-for-wp' ); ?></th>
177
+ <td class="nowrap">
178
+ <label>
179
+ <input type="radio" name="mc4wp_lite_form[hide_after_success]" value="1" <?php checked( $opts['hide_after_success'], 1 ); ?> />
180
+ <?php _e( 'Yes', 'mailchimp-for-wp'); ?>
181
+ </label> &nbsp;
182
+ <label>
183
+ <input type="radio" name="mc4wp_lite_form[hide_after_success]" value="0" <?php checked( $opts['hide_after_success'], 0 ); ?> />
184
+ <?php _e( 'No', 'mailchimp-for-wp' ); ?>
185
+ </label>
186
+ </td>
187
  <td class="desc"><?php _e( 'Select "yes" to hide the form fields after a successful sign-up.', 'mailchimp-for-wp' ); ?></td>
188
  </tr>
189
  <tr valign="top">
190
  <th scope="row"><label for="mc4wp_form_redirect"><?php _e( 'Redirect to URL after successful sign-ups', 'mailchimp-for-wp' ); ?></label></th>
191
  <td colspan="2">
192
+ <input type="text" class="widefat" name="mc4wp_lite_form[redirect]" id="mc4wp_form_redirect" placeholder="<?php printf( __( 'Example: %s', 'mailchimp-for-wp' ), esc_url( site_url('/thank-you/' ) ) ); ?>" value="<?php echo esc_url( $opts['redirect'] ); ?>" />
193
  <p class="help"><?php _e( 'Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, including <code>http://</code>', 'mailchimp-for-wp' ); ?></p>
194
  </td>
195
  </tr>
includes/views/parts/admin-field-wizard.php CHANGED
@@ -17,7 +17,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
17
  <optgroup label="Interest groupings" class="groupings"></optgroup>
18
  <optgroup label="Other" class="other">
19
  <option class="default" value="submit"><?php _e( 'Submit Button' ,'mailchimp-for-wp' ); ?></option>
20
- <option class="default" disabled>(PRO ONLY) <?php _e( 'Lists Choice' ,'mailchimp-for-wp' ); ?></option>
21
  </optgroup>
22
  </select>
23
  </p>
17
  <optgroup label="Interest groupings" class="groupings"></optgroup>
18
  <optgroup label="Other" class="other">
19
  <option class="default" value="submit"><?php _e( 'Submit Button' ,'mailchimp-for-wp' ); ?></option>
20
+ <option class="default" disabled><?php _e( '(PRO ONLY)' ,'mailchimp-for-wp' ); ?> <?php _e( 'Lists Choice' ,'mailchimp-for-wp' ); ?></option>
21
  </optgroup>
22
  </select>
23
  </p>
languages/mailchimp-for-wp-es_ES.mo CHANGED
Binary file
languages/mailchimp-for-wp-es_ES.po CHANGED
@@ -1,1126 +1,1071 @@
 
 
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-07-16 21:29+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.6\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 "Documentacion"
24
-
25
- #: ../includes/class-admin.php:209
26
- msgid "Save Form"
27
- msgstr "Guardar formulario"
28
-
29
- #: ../includes/class-admin.php:211
30
- msgid "Update Form"
31
- msgstr "Actualizar formulario"
32
-
33
- #: ../includes/class-admin.php:248
34
- msgid "Your email address"
35
- msgstr "Tu dirección de correo electrónico"
36
-
37
- #: ../includes/class-admin.php:249
38
- msgid "Email address"
39
- msgstr "Dirección de correo electrónico"
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 "Volver a las opciones de configuracion generales"
48
-
49
- #: ../includes/class-admin.php:263
50
- msgid "Form updated."
51
- msgstr "Formulario actualizado."
52
-
53
- #: ../includes/class-admin.php:264
54
- msgid "Form saved."
55
- msgstr "Formulario guardado."
56
-
57
- #: ../includes/class-admin.php:321
58
- msgid "Form settings"
59
- msgstr "Ajustes de formularios"
60
-
61
- #: ../includes/class-admin.php:322
62
- msgid "Optional settings"
63
- msgstr "Ajustes opcionales"
64
-
65
- #: ../includes/class-admin.php:323
66
- msgid "Form variables"
67
- msgstr "Variables de formulario."
68
-
69
- #: ../includes/class-admin.php:357
70
- msgid "Use the following variables to add some dynamic content to your form."
71
- msgstr ""
72
- "Utiliza las siguientes variables para añadir algo de contenido dinámico a tu "
73
- "formulario"
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
- "No se pudo crear la hoja de estilo. Agrega manualmente el CSS generado a tu "
82
- "hoja de estilo del tema utilizando el %sEditor del Temas%s s o utiliza FTP y "
83
- "edita <em>%s</ em>."
84
-
85
- #: ../includes/class-admin.php:498
86
- #, php-format
87
- msgid "%sShow CSS%s"
88
- msgstr "%sMostrar CSS%s"
89
-
90
- #: ../includes/class-admin.php:507
91
- #, php-format
92
- msgid ""
93
- "To apply these styles on your website, select \"load custom form styles\" in "
94
- "the %sform settings%s"
95
- msgstr ""
96
- "Para aplicar estos estilos en tu sitio web, selecciona \"cargar estilos de "
97
- "formulario personalizado\" en los %sajustes de formulario%s"
98
-
99
- #: ../includes/class-admin.php:508
100
- #, php-format
101
- msgid "The %sCSS Stylesheet%s has been created."
102
- msgstr "La %shoja de estilos CSS%s ha sido creada."
103
-
104
- #: ../includes/class-admin.php:524
105
- msgid "General Settings"
106
- msgstr "Ajustes generales"
107
-
108
- #: ../includes/class-admin.php:525
109
- msgid "Checkboxes"
110
- msgstr "Casillas de verificación"
111
-
112
- #: ../includes/class-admin.php:526
113
- #: ../includes/views/pages/admin-form-settings.php:10
114
- msgid "Forms"
115
- msgstr "Formularios"
116
-
117
- #: ../includes/class-admin.php:527
118
- #: ../includes/views/pages/admin-reports.php:10
119
- msgid "Reports"
120
- msgstr "Informes"
121
-
122
- #: ../includes/class-admin.php:596
123
- msgid "Comment form"
124
- msgstr "Formulario de comentarios"
125
-
126
- #: ../includes/class-admin.php:597
127
- msgid "Registration form"
128
- msgstr "Formulario de registros"
129
-
130
- #: ../includes/class-admin.php:601
131
- msgid "MultiSite forms"
132
- msgstr "Formularios MultiSite"
133
-
134
- #: ../includes/class-admin.php:605
135
- msgid "BuddyPress registration"
136
- msgstr "Regitro BuddyPress"
137
-
138
- #: ../includes/class-admin.php:613 ../includes/class-admin.php:617
139
- #, php-format
140
- msgid "%s checkout"
141
- msgstr "verificación de %s"
142
-
143
- #: ../includes/class-admin.php:653
144
- #, php-format
145
- msgid ""
146
- "Please make sure the plugin is connected to MailChimp. <a href=\"%s"
147
- "\">Provide a valid API key.</a>"
148
- msgstr ""
149
- "Por favor, asegúrrate de que el plugin está conectado a MailChimp. <a href="
150
- "\"%s\"> Proporciona una clave de API válida. </a>"
151
-
152
- #: ../includes/class-admin.php:792
153
- #, php-format
154
- msgid ""
155
- "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
156
- "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
157
- "it now</a> to prevent problems"
158
- msgstr ""
159
- "<strong> ¡Bienvenido a MailChimp para WordPress Pro! </ strong> Hemos "
160
- "transferido los ajustes que habías establecido en la versión Lite, por favor "
161
- "<a href=\"%s\">desactívala ahora</a> para evitar problemas."
162
-
163
- #: ../includes/class-admin.php:865
164
- msgid "Renewed MailChimp cache."
165
- msgstr "Renovar cache de MailChimp"
166
-
167
- #: ../includes/class-admin.php:867
168
- msgid "Failed to renew MailChimp cache - please try again later."
169
- msgstr ""
170
- "Fallo al renovar la cache de MailChimp - Por favor, intentelo de nuevo más "
171
- "tarde."
172
-
173
- #: ../includes/class-form-manager.php:248
174
- #, php-format
175
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
176
- msgstr ""
177
- "<strong>Error:</strong> Por favor, especifica un ID de formulario. Ejemplo: "
178
- "%s."
179
-
180
- #: ../includes/class-form-manager.php:261
181
- msgid ""
182
- "<strong>Error:</strong> Sign-up form not found. Please check if you used the "
183
- "correct form ID."
184
- msgstr ""
185
- "<strong> Error: </strong> formulario de registro no encontrado. Por favor, "
186
- "comprueba si has utilizado el ID de formulario correcto."
187
-
188
- #: ../includes/class-form-manager.php:370
189
- #, php-format
190
- msgid ""
191
- "<strong>Admin notice:</strong> you have not yet selected a MailChimp list(s) "
192
- "for this form. <a target=\"_top\" href=\"%s\">Edit this sign-up form</a> and "
193
- "select at least one list."
194
- msgstr ""
195
- "<strong> Aviso Admin: </ strong> que todavía no ha seleccionado una lista de "
196
- "MailChimp (s) para este formulario. <a target=\"_top\" href=\"%s\"> Editar "
197
- "este formulario de inscripción </ a> y seleccionar al menos una lista."
198
-
199
- #: ../includes/class-form-manager.php:833
200
- msgid "New Sign-Up"
201
- msgstr "Nuevo registro"
202
-
203
- #: ../includes/class-form-manager.php:834
204
- #, php-format
205
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
206
- msgstr ""
207
- "<strong>%s</strong> fomulario de alta en %s en %s está utilizando el formato "
208
- "\"%s \"."
209
-
210
- #: ../includes/class-form-manager.php:873
211
- msgid "This email was auto-sent by the MailChimp for WordPress plugin."
212
- msgstr "Este correo fue auto-enviado por el plugin MailChimp para WordPress"
213
-
214
- #: ../includes/class-widget.php:20
215
- msgid "MailChimp for WP Form"
216
- msgstr "MailChimp para el Formulario de WP"
217
-
218
- #: ../includes/class-widget.php:21
219
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
220
- msgstr "Muestra uno de tus formularios de MailChimp para Wordpress"
221
-
222
- #: ../includes/class-widget.php:39
223
- #, php-format
224
- msgid ""
225
- "Please select the sign-up form you'd like to show here in the <a href=\"%s"
226
- "\">widget settings</a>."
227
- msgstr ""
228
- "Por favor, seleccione el formulario de registro que te gustaría mostrar aquí "
229
- "en los<a href=\"%s\"> ajustes del widget</ a>."
230
-
231
- #: ../includes/class-widget.php:68
232
- msgid "Newsletter"
233
- msgstr "Newsletter"
234
-
235
- #: ../includes/class-widget.php:79
236
- msgid "Title:"
237
- msgstr "Título:"
238
-
239
- #: ../includes/class-widget.php:83
240
- msgid "Form:"
241
- msgstr "Fomulario:"
242
-
243
- #: ../includes/class-widget.php:85
244
- msgid "Select the form to show"
245
- msgstr "Seleccione el formulario a mostrar"
246
-
247
- #: ../includes/class-widget.php:93
248
- #, php-format
249
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
250
- msgstr ""
251
- "No tienes ningún formulario de inscripción. <a href=\"%s\">Crea uno ahora.</ "
252
- "a>"
253
-
254
- #: ../includes/functions/general.php:20
255
- msgid "Sign me up for the newsletter!"
256
- msgstr "¡Suscríbeme a la lista de suscriptores!"
257
-
258
- #: ../includes/functions/general.php:42
259
- msgid ""
260
- "Thank you, your sign-up request was successful! Please check your e-mail "
261
- "inbox."
262
- msgstr ""
263
- "Gracias, su solicitud de inscripción se ha realizado correctamente! Por "
264
- "favor, revise su buzón de correo electrónico."
265
-
266
- #: ../includes/functions/general.php:43
267
- msgid "Oops. Something went wrong. Please try again later."
268
- msgstr "Ups. Algo salió mal. Por favor, intentalo otra vez más tarde. "
269
-
270
- #: ../includes/functions/general.php:44
271
- msgid "Please provide a valid email address."
272
- msgstr "Por favor, introduce una cuenta de correo valida"
273
-
274
- #: ../includes/functions/general.php:45
275
- msgid "Given email address is already subscribed, thank you!"
276
- msgstr ""
277
- "La dirección de correo electrónico facilitada ya está suscrita, ¡gracias!"
278
-
279
- #: ../includes/functions/general.php:46
280
- msgid "Please complete the CAPTCHA."
281
- msgstr "Por favor, introduce el código de seguridad"
282
-
283
- #: ../includes/integrations/class-cf7.php:44
284
- #: ../includes/views/metaboxes/optional-form-settings.php:16
285
- #: ../includes/views/metaboxes/optional-form-settings.php:30
286
- #: ../includes/views/metaboxes/optional-form-settings.php:44
287
- #: ../includes/views/metaboxes/optional-form-settings.php:58
288
- #: ../includes/views/metaboxes/optional-form-settings.php:75
289
- #: ../includes/views/metaboxes/optional-form-settings.php:87
290
- #: ../includes/views/metaboxes/optional-form-settings.php:106
291
- #: ../includes/views/pages/admin-checkbox-settings.php:52
292
- #: ../includes/views/pages/admin-checkbox-settings.php:60
293
- #: ../includes/views/pages/admin-checkbox-settings.php:90
294
- #: ../includes/views/pages/admin-checkbox-settings.php:95
295
- #: ../includes/views/tabs/admin-forms-general-settings.php:58
296
- #: ../includes/views/tabs/admin-forms-general-settings.php:69
297
- #: ../includes/views/tabs/admin-forms-general-settings.php:79
298
- #: ../includes/views/tabs/admin-forms-general-settings.php:90
299
- #: ../includes/views/tabs/admin-forms-general-settings.php:104
300
- #: ../includes/views/tabs/admin-forms-general-settings.php:109
301
- msgid "Yes"
302
- msgstr "Si"
303
-
304
- #: ../includes/integrations/class-cf7.php:44
305
- #: ../includes/views/metaboxes/optional-form-settings.php:18
306
- #: ../includes/views/metaboxes/optional-form-settings.php:32
307
- #: ../includes/views/metaboxes/optional-form-settings.php:46
308
- #: ../includes/views/metaboxes/optional-form-settings.php:60
309
- #: ../includes/views/metaboxes/optional-form-settings.php:77
310
- #: ../includes/views/metaboxes/optional-form-settings.php:89
311
- #: ../includes/views/metaboxes/optional-form-settings.php:107
312
- #: ../includes/views/pages/admin-checkbox-settings.php:52
313
- #: ../includes/views/pages/admin-checkbox-settings.php:62
314
- #: ../includes/views/pages/admin-checkbox-settings.php:90
315
- #: ../includes/views/pages/admin-checkbox-settings.php:95
316
- #: ../includes/views/tabs/admin-forms-general-settings.php:22
317
- #: ../includes/views/tabs/admin-forms-general-settings.php:60
318
- #: ../includes/views/tabs/admin-forms-general-settings.php:71
319
- #: ../includes/views/tabs/admin-forms-general-settings.php:81
320
- #: ../includes/views/tabs/admin-forms-general-settings.php:92
321
- #: ../includes/views/tabs/admin-forms-general-settings.php:104
322
- #: ../includes/views/tabs/admin-forms-general-settings.php:109
323
- msgid "No"
324
- msgstr "No"
325
-
326
- #: ../includes/library/license-manager/class-license-manager.php:132
327
- #, php-format
328
- msgid ""
329
- "<b>Warning!</b> You're blocking external requests which means you won't be "
330
- "able to get %s updates. Please add %s to %s."
331
- msgstr ""
332
- "<b>Advertencia!</ b> Esta bloqueando solicitudes externas lo que significa "
333
- "que no será capaz de obtener las actualizaciones de %s. Por favor, añada %s "
334
- "para %s."
335
-
336
- #: ../includes/library/license-manager/class-license-manager.php:175
337
- #, php-format
338
- msgid "Your %s license has been activated. You have an unlimited license. "
339
- msgstr "Su licencia de %s ha sido activada. Tiene una licencia ilimitada."
340
-
341
- #: ../includes/library/license-manager/class-license-manager.php:177
342
- #, php-format
343
- msgid "Your %s license has been activated. You have used %d/%d activations. "
344
- msgstr "Su licencia de %s ha sido activada. Ha utilizado %d/%d activaciones."
345
-
346
- #: ../includes/library/license-manager/class-license-manager.php:182
347
- #, php-format
348
- msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
349
- msgstr "<a href=\"%s\">¿Sabía que usted puede actualizar su licencia?</a>"
350
-
351
- #: ../includes/library/license-manager/class-license-manager.php:186
352
- #, php-format
353
- msgid ""
354
- "<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
355
- "it?</a>"
356
- msgstr ""
357
- "<a href=\"%s\">Su licencia expira en %d días, ¿le gustaría ampliarla?</a>"
358
-
359
- #: ../includes/library/license-manager/class-license-manager.php:195
360
- #, php-format
361
- msgid ""
362
- "You've reached your activation limit. You must <a href=\"%s\">upgrade your "
363
- "license</a> to use it on this site."
364
- msgstr ""
365
- "Has alcanzado el límite de activaciones. Debe <a href=\"%s\"> actualizar su "
366
- "licencia</ a> para utilizarlo en este sitio."
367
-
368
- #: ../includes/library/license-manager/class-license-manager.php:198
369
- #, php-format
370
- msgid ""
371
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in "
372
- "order to use it again."
373
- msgstr ""
374
- "Su licencia ha expirado. Debes <a href=\"%s\">ampliar la licencia</ a> con "
375
- "el fin de utilizarlo de nuevo."
376
-
377
- #: ../includes/library/license-manager/class-license-manager.php:201
378
- msgid "Failed to activate your license, your license key seems to be invalid."
379
- msgstr "No se pudo activar la licencia, la clave de licencia parece inválida."
380
-
381
- #: ../includes/library/license-manager/class-license-manager.php:225
382
- #, php-format
383
- msgid "Your %s license has been deactivated."
384
- msgstr "Su licencia de %s se ha desactivado."
385
-
386
- #: ../includes/library/license-manager/class-license-manager.php:227
387
- #, php-format
388
- msgid "Failed to deactivate your %s license."
389
- msgstr "No se pudo desactivar su licencia de %s"
390
-
391
- #: ../includes/library/license-manager/class-license-manager.php:262
392
- #, php-format
393
- msgid "Request error: \"%s\""
394
- msgstr "Error de solicitud: \"%s\""
395
-
396
- #: ../includes/library/license-manager/class-license-manager.php:420
397
- #, php-format
398
- msgid "%s: License Settings"
399
- msgstr "%s: Configuración de licencia"
400
-
401
- #: ../includes/library/license-manager/class-plugin-license-manager.php:72
402
- #, php-format
403
- msgid ""
404
- "%s is network activated, you can manage your license in the <a href=\"%s"
405
- "\">network admin license page</a>."
406
- msgstr ""
407
- "%s está activada por red, usted puede administrar su licencia en la<a ref "
408
- "href=\"%s\">página de red de administración de licencia</ a>."
409
-
410
- #: ../includes/library/license-manager/class-plugin-license-manager.php:74
411
- #, php-format
412
- msgid ""
413
- "%s is network activated, please contact your site administrator to manage "
414
- "the license."
415
- msgstr ""
416
- "%s si la red está activada, por favor póngase en contacto con el "
417
- "administrador del sitio para gestionar la licencia."
418
-
419
- #: ../includes/library/license-manager/class-update-manager.php:83
420
- #, php-format
421
- msgid ""
422
- "%s failed to check for updates because of the following error: <em>%s</em>"
423
- msgstr ""
424
- "%s fallo al comprobar las actualizaciones debido al siguiente error: <em>"
425
- "%s</ em>"
426
-
427
- #: ../includes/library/license-manager/class-update-manager.php:148
428
- msgid ""
429
- "This site has not been activated properly on dannyvankooten.com and thus "
430
- "cannot check for future updates. Please activate your site with a valid "
431
- "license key."
432
- msgstr ""
433
- "Este sitio no se ha activado correctamente en dannyvankooten.com y por lo "
434
- "tanto no se puede comprobar si hay actualizaciones. Por favor, active su "
435
- "sitio con una clave de licencia válida."
436
-
437
- #: ../includes/library/license-manager/views/form.php:23
438
- msgid "License status"
439
- msgstr "Estado de la licencia"
440
-
441
- #: ../includes/library/license-manager/views/form.php:33
442
- msgid "Toggle license status"
443
- msgstr "Estado de la licencia"
444
-
445
- #: ../includes/library/license-manager/views/form.php:38
446
- msgid ""
447
- "(deactivate your license so you can activate it on another WordPress site)"
448
- msgstr ""
449
- "(desactivar la licencia para que pueda activarla en otro sitio de WordPress)"
450
-
451
- #: ../includes/library/license-manager/views/form.php:44
452
- msgid "Please enter a license key in the field below first."
453
- msgstr "Por favor, primero introduce una clave de licencia en campo de abajo"
454
-
455
- #: ../includes/library/license-manager/views/form.php:52
456
- msgid "License Key"
457
- msgstr "Llave de licencia"
458
-
459
- #: ../includes/library/license-manager/views/form.php:54
460
- #, php-format
461
- msgid "Paste your %s license key here.."
462
- msgstr "Pega tu %s clave de licencia aquí..."
463
-
464
- #: ../includes/library/license-manager/views/form.php:56
465
- #, php-format
466
- msgid "You defined your license key using the %s PHP constant."
467
- msgstr "Ha definido la clave de licencia utilizando el %s PHP constante."
468
 
469
- #: ../includes/library/license-manager/views/form.php:73
470
- #, php-format
471
  msgid "Your %s license will expire on %s."
472
  msgstr "Tu %s licencia expirará el %s."
473
 
474
- #: ../includes/library/license-manager/views/form.php:76
475
- #, php-format
476
  msgid "%sRenew your license now%s."
477
  msgstr "%sRenovar licencia ahora%s."
478
 
479
- #: ../includes/tables/class-forms-table.php:19
480
- msgid "Sign-Up Form"
481
- msgstr "Formmulario de alta"
482
 
483
- #: ../includes/tables/class-forms-table.php:20
484
- msgid "Sign-up Forms"
485
- msgstr "Formularios de registro"
486
-
487
- #: ../includes/tables/class-forms-table.php:36
488
  msgid "Form"
489
  msgstr "Formulario"
490
 
491
- #: ../includes/tables/class-forms-table.php:37
492
  msgid "Shortcode"
493
  msgstr "Código corto"
494
 
495
- #: ../includes/tables/class-forms-table.php:38
496
  msgid "List(s)"
497
  msgstr "Lista(s)"
498
 
499
- #: ../includes/tables/class-forms-table.php:39
500
  msgid "Last edited"
501
  msgstr "Ultima edición"
502
 
503
- #: ../includes/tables/class-forms-table.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
504
  msgid "You have not created any sign-up forms yet. Time to do so!"
505
- msgstr ""
506
- "No has creado ningún formulario de registro todavía. ¡Es hora de hacerlo!"
507
 
508
- #: ../includes/tables/class-log-table.php:23
509
  msgid "Subscriber"
510
  msgstr "Suscriptor"
511
 
512
- #: ../includes/tables/class-log-table.php:24
513
  msgid "Subscribers"
514
  msgstr "Suscriptores"
515
 
516
- #: ../includes/tables/class-log-table.php:44
517
  msgid "Email"
518
  msgstr "Correo"
519
 
520
- #: ../includes/tables/class-log-table.php:45
521
  msgid "List"
522
  msgstr "Lista"
523
 
524
- #: ../includes/tables/class-log-table.php:46
525
  msgid "Type"
526
  msgstr "Tipo"
527
 
528
- #: ../includes/tables/class-log-table.php:47
529
  msgid "Source"
530
  msgstr "Origen"
531
 
532
- #: ../includes/tables/class-log-table.php:48
533
  msgid "Extra data"
534
  msgstr "Datos adicionales"
535
 
536
- #: ../includes/tables/class-log-table.php:49
537
  msgid "Subscribed"
538
  msgstr "Suscrito"
539
 
540
- #: ../includes/tables/class-log-table.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  msgid "No subscribe requests found."
542
  msgstr "Ninguna solicitud de suscripcion encontrada"
543
 
544
- #: ../includes/views/metaboxes/optional-form-settings.php:8
545
- #, php-format
546
- msgid ""
547
- "Any settings you specify here will override the <a href=\"%s\">general form "
548
- "settings</a>. If no setting is specified, the corresponding general setting "
549
- "value will be used."
550
- msgstr ""
551
- "Los ajustes que especifiques aquí anularán la <a href=\"%s\"> configuración "
552
- "general de los formularios</a>. Si no se especifica ningún valor, se "
553
- "utilizará el valor de ajuste general correspondiente."
554
 
555
- #: ../includes/views/metaboxes/optional-form-settings.php:10
 
 
 
 
 
 
 
 
556
  msgid "MailChimp Settings"
557
  msgstr "Configuración de MailChimp"
558
 
559
- #: ../includes/views/metaboxes/optional-form-settings.php:13
560
- #: ../includes/views/pages/admin-checkbox-settings.php:51
561
- #: ../includes/views/tabs/admin-forms-general-settings.php:55
562
  msgid "Double opt-in?"
563
  msgstr "¿Doble opt-in?"
564
 
565
- #: ../includes/views/metaboxes/optional-form-settings.php:20
566
- #: ../includes/views/metaboxes/optional-form-settings.php:34
567
- #: ../includes/views/metaboxes/optional-form-settings.php:48
568
- #: ../includes/views/metaboxes/optional-form-settings.php:62
569
- #: ../includes/views/metaboxes/optional-form-settings.php:79
570
- #: ../includes/views/metaboxes/optional-form-settings.php:91
571
  msgid "Inherit"
572
  msgstr "Heredado"
573
 
574
- #: ../includes/views/metaboxes/optional-form-settings.php:22
575
- #: ../includes/views/pages/admin-checkbox-settings.php:53
576
- #: ../includes/views/tabs/admin-forms-general-settings.php:62
577
- msgid ""
578
- "Select \"yes\" if you want people to confirm their email address before "
579
- "being subscribed (recommended)"
580
- msgstr ""
581
- "Selecciona \"sí \" si quieres que los suscriptores confirmen su dirección de "
582
- "correo electrónico antes de suscribirse (recomendado)"
583
 
584
- #: ../includes/views/metaboxes/optional-form-settings.php:27
585
- #: ../includes/views/tabs/admin-forms-general-settings.php:76
586
  msgid "Update existing subscribers?"
587
  msgstr "¿Actualizar los suscriptores existentes?"
588
 
589
- #: ../includes/views/metaboxes/optional-form-settings.php:36
590
- #: ../includes/views/tabs/admin-forms-general-settings.php:83
591
- msgid ""
592
- "Select \"yes\" if you want to update existing subscribers (instead of "
593
- "showing the \"already subscribed\" message)."
594
- msgstr ""
595
- "Selecciona \"sí \" si quieres actualizar los suscriptores existentes (en "
596
- "lugar de mostrar el mensaje \"ya suscrito \")."
597
 
598
- #: ../includes/views/metaboxes/optional-form-settings.php:41
599
- #: ../includes/views/tabs/admin-forms-general-settings.php:87
600
  msgid "Replace interest groups?"
601
  msgstr "¿Se sustituyen los grupos de interés?"
602
 
603
- #: ../includes/views/metaboxes/optional-form-settings.php:50
604
- #: ../includes/views/tabs/admin-forms-general-settings.php:94
605
- msgid ""
606
- "Select \"yes\" if you want to replace the interest groups with the groups "
607
- "provided instead of adding the provided groups to the member's interest "
608
- "groups (only when updating a subscriber)."
609
- msgstr ""
610
- "Selecciona \"sí \" si deseas reemplazar los grupos de interés con los grupos "
611
- "previstos en lugar de añadir los grupos previstos para los grupos de interés "
612
- "del usuario (sólo cuando se actualiza un suscriptor)."
613
 
614
- #: ../includes/views/metaboxes/optional-form-settings.php:55
615
- #: ../includes/views/pages/admin-checkbox-settings.php:57
616
- #: ../includes/views/tabs/admin-forms-general-settings.php:66
617
  msgid "Send Welcome Email?"
618
  msgstr "¿Enviar email de bienvenida?"
619
 
620
- #: ../includes/views/metaboxes/optional-form-settings.php:64
621
- #: ../includes/views/pages/admin-checkbox-settings.php:64
622
- #: ../includes/views/tabs/admin-forms-general-settings.php:73
623
- msgid ""
624
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
625
- "succeeds (only when double opt-in is disabled)."
626
- msgstr ""
627
- "Selecciona \"sí \" si deseas enviar a tus listas un correo electrónico de "
628
- "bienvenida si se realiza una suscripción correctamente (sólo cuando el "
629
- "proceso de doble opt-in está desactivado)."
630
-
631
- #: ../includes/views/metaboxes/optional-form-settings.php:69
632
- msgid "Form Settings & Messages"
633
- msgstr "Configuración de mesajes y formularios"
634
 
635
- #: ../includes/views/metaboxes/optional-form-settings.php:72
636
- #: ../includes/views/tabs/admin-forms-general-settings.php:103
637
  msgid "Enable AJAX form submission?"
638
  msgstr "¿Habilitar AJAX para el envío de formularios?"
639
 
640
- #: ../includes/views/metaboxes/optional-form-settings.php:80
641
- #: ../includes/views/tabs/admin-forms-general-settings.php:105
642
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
643
- msgstr ""
644
- "Seleccione \"sí \" si desea utilizar AJAX (JavaScript) en sus formularios"
645
 
646
- #: ../includes/views/metaboxes/optional-form-settings.php:84
647
- #: ../includes/views/tabs/admin-forms-general-settings.php:108
648
  msgid "Hide form after a successful sign-up?"
649
  msgstr "¿Ocultar formulario después de un registro registro satisfactorio?"
650
 
651
- #: ../includes/views/metaboxes/optional-form-settings.php:93
652
- #: ../includes/views/tabs/admin-forms-general-settings.php:110
653
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
654
- msgstr ""
655
- "Selecciona \"Sí \" para ocultar los campos de formulario después de un "
656
- "registro satisfactorio."
657
 
658
- #: ../includes/views/metaboxes/optional-form-settings.php:97
659
- #: ../includes/views/tabs/admin-forms-general-settings.php:113
660
  msgid "Redirect to URL after successful sign-ups"
661
  msgstr "Redireccionar a una URL tras suscribirse satisfactoriamente."
662
 
663
- #: ../includes/views/metaboxes/optional-form-settings.php:100
664
- #: ../includes/views/tabs/admin-forms-general-settings.php:116
665
- msgid ""
666
- "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
667
- "including <code>http://</code>"
668
- msgstr ""
669
- "Dejar en blanco o introduzca 0 para ninguna redirección. Use URLs completas "
670
- "(absolutas), incluyendo <code>http://</ code>"
671
 
672
- #: ../includes/views/metaboxes/optional-form-settings.php:104
673
  msgid "Send an email copy of the form data?"
674
  msgstr "¿Quieres una copia de los datos del formulario por email?"
675
 
676
- #: ../includes/views/metaboxes/optional-form-settings.php:108
677
- msgid ""
678
- "Tick \"yes\" if you want to receive an email with the form data for every "
679
- "sign-up request."
680
- msgstr ""
681
- "Marca \"sí \" si deseas recibir un correo electrónico con los datos del "
682
- "formulario para cada solicitud de registro."
683
 
684
- #: ../includes/views/metaboxes/optional-form-settings.php:111
685
  msgid "Send the copy to this email:"
686
  msgstr "Envia una copia a este email: "
687
 
688
- #: ../includes/views/metaboxes/optional-form-settings.php:117
689
- #: ../includes/views/tabs/admin-forms-general-settings.php:119
690
- msgid "Success message"
691
- msgstr "Mensaje correcto"
692
-
693
- #: ../includes/views/metaboxes/optional-form-settings.php:121
694
- #: ../includes/views/tabs/admin-forms-general-settings.php:123
695
- msgid "General error message"
696
- msgstr "Mensaje de error general"
697
-
698
- #: ../includes/views/metaboxes/optional-form-settings.php:125
699
- #: ../includes/views/tabs/admin-forms-general-settings.php:127
700
- msgid "Invalid email address message"
701
- msgstr "Mensaje de correo electrónico inválido"
702
-
703
- #: ../includes/views/metaboxes/optional-form-settings.php:129
704
- #: ../includes/views/tabs/admin-forms-general-settings.php:131
705
- msgid "Already subscribed message"
706
- msgstr "Mensaje de suscripcion listo"
707
-
708
- #: ../includes/views/metaboxes/optional-form-settings.php:134
709
- #: ../includes/views/tabs/admin-forms-general-settings.php:136
710
- msgid "Invalid CAPTCHA message"
711
- msgstr "Mensaje de CAPTCHA no válido"
712
-
713
- #: ../includes/views/metaboxes/optional-form-settings.php:141
714
- #: ../includes/views/tabs/admin-forms-general-settings.php:142
715
- #, php-format
 
 
 
 
 
 
 
 
716
  msgid "HTML tags like %s are allowed in the message fields."
717
  msgstr "Las etiquetas HTML como %s están permitidas en los campos del mensaje."
718
 
719
- #: ../includes/views/metaboxes/required-form-settings.php:14
720
  msgid "Lists this form subscribes to"
721
  msgstr "Los formularios de esta lista suscriben a"
722
 
723
- #: ../includes/views/metaboxes/required-form-settings.php:17
724
- #: ../includes/views/pages/admin-checkbox-settings.php:38
725
- #, php-format
726
  msgid "No lists found, %sare you connected to MailChimp?%s"
727
  msgstr "No se han encontrado listas, %s¿Esta usted conectado a MailChimp?%s"
728
 
729
- #: ../includes/views/metaboxes/required-form-settings.php:29
730
  msgid "Add a new field"
731
  msgstr "Añadir un nuevo campo"
732
 
733
- #: ../includes/views/metaboxes/required-form-settings.php:32
734
  msgid "Select MailChimp field.."
735
  msgstr "Seleccione el campo de MailChimp ..."
736
 
737
- #: ../includes/views/metaboxes/required-form-settings.php:36
738
  msgid "Submit Button"
739
  msgstr "Botón de alta"
740
 
741
- #: ../includes/views/metaboxes/required-form-settings.php:37
742
  msgid "Lists Choice"
743
  msgstr "Seleccionar listas"
744
 
745
- #: ../includes/views/metaboxes/required-form-settings.php:45
746
  msgid "Label"
747
  msgstr "Etiqueta"
748
 
749
- #: ../includes/views/metaboxes/required-form-settings.php:45
750
- #: ../includes/views/metaboxes/required-form-settings.php:50
751
- #: ../includes/views/metaboxes/required-form-settings.php:55
752
  msgid "(optional)"
753
  msgstr "(opcional)"
754
 
755
- #: ../includes/views/metaboxes/required-form-settings.php:50
756
  msgid "Placeholder"
757
  msgstr "Marcador de posición"
758
 
759
- #: ../includes/views/metaboxes/required-form-settings.php:55
760
  msgid "Initial value"
761
  msgstr "Valor inicial"
762
 
763
- #: ../includes/views/metaboxes/required-form-settings.php:60
764
  msgid "Labels"
765
  msgstr "Etiquetas"
766
 
767
- #: ../includes/views/metaboxes/required-form-settings.php:60
768
  msgid "(leave empty to hide)"
769
  msgstr "(dejar en blanco para ocultar)"
770
 
771
- #: ../includes/views/metaboxes/required-form-settings.php:65
772
- #, php-format
773
  msgid "Wrap in paragraph %s tags?"
774
  msgstr "¿Envolver las etiquetas %s en el párrafo?"
775
 
776
- #: ../includes/views/metaboxes/required-form-settings.php:69
777
  msgid "Required field?"
778
  msgstr "¿Campo obligatorio?"
779
 
780
- #: ../includes/views/metaboxes/required-form-settings.php:73
781
  msgid "Add to form"
782
  msgstr "Añadir al formulario"
783
 
784
- #: ../includes/views/metaboxes/required-form-settings.php:77
785
  msgid "Generated HTML"
786
  msgstr "Generado HTML"
787
 
788
- #: ../includes/views/metaboxes/required-form-settings.php:86
789
  msgid "Form usage"
790
  msgstr "Formulario a emplear"
791
 
792
- #: ../includes/views/metaboxes/required-form-settings.php:87
793
- #, php-format
794
- msgid ""
795
- "Use the shortcode %s to display this form inside a post, page or text widget."
796
- msgstr ""
797
- "Utiliza el código corto %s para mistrar este formulario dentro de una "
798
- "entrada, artículo o un widget de texto."
799
 
800
- #: ../includes/views/pages/admin-checkbox-settings.php:11
801
- #: ../includes/views/pages/admin-form-settings.php:10
802
- #: ../includes/views/pages/admin-general-settings.php:10
803
- #: ../includes/views/pages/admin-reports.php:10
804
  msgid "MailChimp for WordPress"
805
  msgstr "MailChimp para WordPress"
806
 
807
- #: ../includes/views/pages/admin-checkbox-settings.php:11
808
  msgid "Checkbox Settings"
809
  msgstr "Ajustes de las casillas de verificación"
810
 
811
- #: ../includes/views/pages/admin-checkbox-settings.php:14
812
- msgid ""
813
- "To use sign-up checkboxes, select at least one list and one form to add the "
814
- "checkbox to."
815
- msgstr ""
816
- "Para activar el registro empleando las casillas de verificación de MailChimp "
817
- "para WordPress, seleccione al menos una lista y un formulario donde añadir "
818
- "dicha casilla de verificación."
819
 
820
- #: ../includes/views/pages/admin-checkbox-settings.php:21
821
  msgid "MailChimp settings for checkboxes"
822
  msgstr "Ajustes de MailChimp para casillas de verificación"
823
 
824
- #: ../includes/views/pages/admin-checkbox-settings.php:26
825
- msgid ""
826
- "If you want to use sign-up checkboxes, select at least one MailChimp list to "
827
- "subscribe people to."
828
- msgstr ""
829
- "Si desea utilizar las casillas de verificación de registro, seleccione al "
830
- "menos una lista de MailChimp a las que la gente se suscribirá."
831
 
832
- #: ../includes/views/pages/admin-checkbox-settings.php:34
833
  msgid "MailChimp Lists"
834
  msgstr "Listas de MailChimp"
835
 
836
- #: ../includes/views/pages/admin-checkbox-settings.php:45
837
- msgid ""
838
- "Select the list(s) to which people who check the checkbox should be "
839
- "subscribed."
840
- msgstr ""
841
- "Selecciona la lista(s) a la que se registrarán las personas que marquen las "
842
- "casillas de verificación."
843
 
844
- #: ../includes/views/pages/admin-checkbox-settings.php:68
845
  msgid "Checkbox settings"
846
  msgstr "Configuración de las casillas de verificación"
847
 
848
- #: ../includes/views/pages/admin-checkbox-settings.php:71
849
  msgid "Add the checkbox to these forms"
850
  msgstr "Añadir casillas de verificación en estos formularios"
851
 
852
- #: ../includes/views/pages/admin-checkbox-settings.php:78
853
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
854
- msgstr ""
855
- "Al seleccionar un formulario se añadirá automaticamente la casilla de "
856
- "verificación de alta al mismo."
857
 
858
- #: ../includes/views/pages/admin-checkbox-settings.php:82
 
 
 
 
859
  msgid "Checkbox label text"
860
  msgstr "Texto a mostrar junto a la casilla de verificación."
861
 
862
- #: ../includes/views/pages/admin-checkbox-settings.php:85
863
- #: ../includes/views/pages/admin-checkbox-settings.php:115
864
- #, php-format
865
  msgid "HTML tags like %s are allowed in the label text."
866
  msgstr "La etiquetas HTML como %s están permitidas en el texto de la etiqueta."
867
 
868
- #: ../includes/views/pages/admin-checkbox-settings.php:89
869
  msgid "Pre-check the checkbox?"
870
  msgstr "¿Dejamos pre-marcada la casilla de verificación?"
871
 
872
- #: ../includes/views/pages/admin-checkbox-settings.php:94
873
  msgid "Load some default CSS?"
874
  msgstr "¿Cargamos algunos CSS por defecto?"
875
 
876
- #: ../includes/views/pages/admin-checkbox-settings.php:96
877
  msgid "Select \"yes\" if the checkbox appears in a weird place."
878
- msgstr ""
879
- "Seleccione \"sí \" si la casilla de verificación aparece en un lugar "
880
- "inapropiado"
881
 
882
- #: ../includes/views/pages/admin-checkbox-settings.php:100
883
- #: ../includes/views/pages/admin-checkbox-settings.php:120
884
- #: ../includes/views/tabs/admin-forms-general-settings.php:48
885
- #: ../includes/views/tabs/admin-forms-general-settings.php:146
886
- msgid "Save all changes"
887
- msgstr "Guardar todos los cambios"
888
 
889
- #: ../includes/views/pages/admin-checkbox-settings.php:103
 
 
 
 
 
 
 
 
 
 
 
 
890
  msgid "Custom label texts"
891
  msgstr "Etiquetas personalizadas de textos"
892
 
893
- #: ../includes/views/pages/admin-checkbox-settings.php:104
894
- msgid ""
895
- "Override the default checkbox label text for any given checkbox using the "
896
- "fields below."
897
- msgstr ""
898
- "Sobreescribir la casilla de verificación por defecto en cualquier casilla de "
899
- "verificación empleando los campos de abajo"
900
 
901
- #: ../includes/views/pages/admin-form-settings.php:13
902
  msgid "Forms & Settings"
903
  msgstr "Ajustes de los formularios"
904
 
905
- #: ../includes/views/pages/admin-form-settings.php:14
906
  msgid "CSS Styles Builder"
907
  msgstr "Creador de estilos CSS"
908
 
909
- #: ../includes/views/pages/admin-general-settings.php:10
910
  msgid "License & API Settings"
911
  msgstr "Ajustes de licencia y API"
912
 
913
- #: ../includes/views/pages/admin-general-settings.php:19
914
  msgid "API Settings"
915
  msgstr "Configuración de la API"
916
 
917
- #: ../includes/views/pages/admin-general-settings.php:21
918
  msgid "CONNECTED"
919
  msgstr "CONECTADO"
920
 
921
- #: ../includes/views/pages/admin-general-settings.php:23
922
  msgid "NOT CONNECTED"
923
  msgstr "NO CONECTADO"
924
 
925
- #: ../includes/views/pages/admin-general-settings.php:29
926
  msgid "API Key"
927
  msgstr "Llave API"
928
 
929
- #: ../includes/views/pages/admin-general-settings.php:31
930
  msgid "Your MailChimp API key"
931
  msgstr "Tu clave API de MailChimp"
932
 
933
- #: ../includes/views/pages/admin-general-settings.php:32
934
  msgid "Get your API key here."
935
  msgstr "Obtenga su clave de API aquí."
936
 
937
- #: ../includes/views/pages/admin-general-settings.php:48
938
  msgid "MailChimp Data"
939
  msgstr "Datos de MailChimp"
940
 
941
- #: ../includes/views/pages/admin-general-settings.php:49
942
- msgid ""
943
- "The table below shows your MailChimp lists data. If you applied changes to "
944
- "your MailChimp lists, please use the following button to renew your cached "
945
- "data."
946
- msgstr ""
947
- "La siguiente tabla muestra los datos de las listas de MailChimp. Si ha "
948
- "aplicado cambios en las listas de MailChimp, por favor, utilice el botón "
949
- "siguiente para renovar sus datos en caché."
950
 
951
- #: ../includes/views/pages/admin-general-settings.php:55
952
- #: ../includes/views/pages/admin-general-settings.php:133
953
  msgid "Renew MailChimp lists"
954
  msgstr "Renovar las listas de MailChimp"
955
 
956
- #: ../includes/views/pages/admin-general-settings.php:120
957
  msgid "No lists were found in your MailChimp account."
958
  msgstr "No se han encontrado listas en tu cuenta de MailChimp"
959
 
960
- #: ../includes/views/pages/admin-reports.php:14
961
  msgid "Statistics"
962
  msgstr "Estadísticas"
963
 
964
- #: ../includes/views/pages/admin-reports.php:15
965
  msgid "Log"
966
  msgstr "Log"
967
 
968
- #: ../includes/views/parts/admin-footer.php:8
969
- #, php-format
970
- msgid ""
971
- "Need help? Email me directly at <a href=\"%s\">support@dannyvankooten.com</"
972
- "a>. Please include your website URL and as many details as possible."
973
- msgstr ""
974
- "¿Necesitas ayuda? Envíame un correo electrónico directamente a <a href=\"%s"
975
- "\"> support@dannyvankooten.com</a>. Por favor, incluye la URL de tu sitio "
976
- "web y el mayor número de detalles posible."
 
 
977
 
978
- #: ../includes/views/parts/admin-text-variables.php:11
979
  msgid "Replaced with the number of subscribers on the selected list(s)"
980
- msgstr ""
981
- "Se sustituye con el número de suscriptores de la lista seleccionada (s)"
 
 
 
982
 
983
- #: ../includes/views/parts/admin-text-variables.php:15
984
  msgid "Replaced with the visitor's IP address"
985
  msgstr "Se sustituye por la dirección IP del visitante"
986
 
987
- #: ../includes/views/parts/admin-text-variables.php:19
988
- #, php-format
989
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
990
  msgstr "Se sustituye con la fecha actual (aaaa/mm/dd ejemplo: %s)"
991
 
992
- #: ../includes/views/parts/admin-text-variables.php:23
993
- #, php-format
994
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
995
  msgstr "Se susitutiye con la hora actual (hh:mm:ss por ejemplo: %s)"
996
 
997
- #: ../includes/views/parts/admin-text-variables.php:27
998
- msgid ""
999
- "Replaced with the logged in user's email (or nothing, if there is no logged "
1000
- "in user)"
1001
- msgstr ""
1002
- "Se sustituye con la cuenta de correo del usuario que ha iniciado sesión (o "
1003
- "ninguna, si no hay un usuario que ha iniciado sesión)"
1004
 
1005
- #: ../includes/views/parts/admin-text-variables.php:31
1006
- msgid "Display name of the current user"
1007
- msgstr "Mostrar nombre del usuario actual"
1008
-
1009
- #: ../includes/views/parts/admin-text-variables.php:35
1010
  msgid "First name of the current user"
1011
  msgstr "Apellido del usuario actual"
1012
 
1013
- #: ../includes/views/parts/admin-text-variables.php:39
1014
  msgid "Last name of the current user"
1015
  msgstr "Segundo apellido del usuario actual"
1016
 
1017
- #: ../includes/views/parts/admin-text-variables.php:43
1018
  msgid "Current user ID"
1019
  msgstr "ID de usuario actual"
1020
 
1021
- #: ../includes/views/parts/admin-text-variables.php:47
1022
  msgid "Current URL"
1023
  msgstr "URL actual"
1024
 
1025
- #: ../includes/views/tabs/admin-forms-css-builder.php:10
1026
  msgid "Use the fields below to create custom styling rules for your forms."
1027
- msgstr ""
1028
- "Utiliza los campos inferiores para crear reglas de estilo personalizadas "
1029
- "para tus formularios."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1030
 
1031
- #: ../includes/views/tabs/admin-forms-css-builder.php:214
 
 
 
 
1032
  msgid "Build CSS File"
1033
  msgstr "Crear archivo CSS"
1034
 
1035
- #: ../includes/views/tabs/admin-forms-general-settings.php:8
1036
  msgid "Sign-Up Forms"
1037
  msgstr "Formularios de suscripción"
1038
 
1039
- #: ../includes/views/tabs/admin-forms-general-settings.php:8
1040
  msgid "Create New Form"
1041
  msgstr "Crear nuevo formulario"
1042
 
1043
- #: ../includes/views/tabs/admin-forms-general-settings.php:16
1044
  msgid "General form settings"
1045
  msgstr "Configuración general para los formularios"
1046
 
1047
- #: ../includes/views/tabs/admin-forms-general-settings.php:19
1048
  msgid "Load form styles (CSS)?"
1049
  msgstr "¿Cargamos los estilos CSS por defecto?"
1050
 
1051
- #: ../includes/views/tabs/admin-forms-general-settings.php:23
1052
  msgid "Yes, load basic form styles"
1053
  msgstr "Si, carga los estilos de formulario básicos"
1054
 
1055
- #: ../includes/views/tabs/admin-forms-general-settings.php:24
1056
  msgid "Yes, load my custom form styles"
1057
  msgstr "Si, carga mis estilos de formulario personalizados"
1058
 
1059
- #: ../includes/views/tabs/admin-forms-general-settings.php:25
1060
  msgid "Yes, load default form theme"
1061
  msgstr "Si, carga los ajustes de formulario del tema por defecto"
1062
 
1063
- #: ../includes/views/tabs/admin-forms-general-settings.php:26
1064
  msgid "Light Theme"
1065
  msgstr "Tema claro"
1066
 
1067
- #: ../includes/views/tabs/admin-forms-general-settings.php:27
1068
  msgid "Red Theme"
1069
  msgstr "Tema rojo"
1070
 
1071
- #: ../includes/views/tabs/admin-forms-general-settings.php:28
1072
  msgid "Green Theme"
1073
  msgstr "Tema verde"
1074
 
1075
- #: ../includes/views/tabs/admin-forms-general-settings.php:29
1076
  msgid "Blue Theme"
1077
  msgstr "Tema azul"
1078
 
1079
- #: ../includes/views/tabs/admin-forms-general-settings.php:30
1080
  msgid "Dark Theme"
1081
  msgstr "Tema oscuro"
1082
 
1083
- #: ../includes/views/tabs/admin-forms-general-settings.php:31
1084
  msgid "Custom Color Theme"
1085
  msgstr "Color de tema personalizado"
1086
 
1087
- #: ../includes/views/tabs/admin-forms-general-settings.php:36
1088
- #, php-format
1089
- msgid ""
1090
- "If you %screated a custom stylesheet%s and want it to be loaded, select "
1091
- "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
1092
- "of the default themes."
1093
- msgstr ""
1094
- "Si %screaste una hoja de estilo personalizada%s y deseas que se cargue, "
1095
- "selecciona \"estilos de formulario personalizados \". De lo contrario, elije "
1096
- "los estilos de formato básico o uno de los temas por defecto."
1097
 
1098
- #: ../includes/views/tabs/admin-forms-general-settings.php:40
1099
  msgid "Select Color"
1100
  msgstr "Selección de color"
1101
 
1102
- #: ../includes/views/tabs/admin-forms-general-settings.php:50
 
 
 
 
1103
  msgid "Default MailChimp settings"
1104
  msgstr "Ajustes de MailChimp por defecto"
1105
 
1106
- #: ../includes/views/tabs/admin-forms-general-settings.php:51
1107
- #: ../includes/views/tabs/admin-forms-general-settings.php:99
1108
- msgid ""
1109
- "The following settings apply to <strong>all</strong> forms but can be "
1110
- "overridden on a per-form basis."
1111
- msgstr ""
1112
- "Los siguientes ajustes se aplican a<strong> todos </ strong>los formularios "
1113
- "pero pueden reemplazarse uno a uno."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1114
 
1115
- #: ../includes/views/tabs/admin-forms-general-settings.php:98
1116
- msgid "Default form settings"
1117
- msgstr "Ajustes de formulario por defecto"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
 
1119
- #~ msgid "Upgrade to Pro"
1120
- #~ msgstr "Actualizar a la versión pro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1121
 
1122
- #~ msgid "MailChimp cache successfully renewed."
1123
- #~ msgstr "Cache de MailChimp renovada satisfactoriamente."
 
1124
 
1125
- #~ msgid "Select at least one list first."
1126
- #~ msgstr "Seleccione en primer lugar, al menos una lista."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of MailChimp for WordPress in Spanish (Spain)
2
+ # This file is distributed under the same license as the MailChimp for WordPress package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2014-09-14 00:15:28+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: MailChimp for WordPress\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
+ #: includes/library/license-manager/views/form.php:73
 
14
  msgid "Your %s license will expire on %s."
15
  msgstr "Tu %s licencia expirará el %s."
16
 
17
+ #: includes/library/license-manager/views/form.php:76
 
18
  msgid "%sRenew your license now%s."
19
  msgstr "%sRenovar licencia ahora%s."
20
 
21
+ #: includes/tables/class-forms-table.php:35
22
+ msgid "ID"
23
+ msgstr "ID"
24
 
25
+ #: includes/tables/class-forms-table.php:36
26
+ #: includes/tables/class-log-table.php:207
27
+ #: includes/tables/class-log-table.php:312
 
 
28
  msgid "Form"
29
  msgstr "Formulario"
30
 
31
+ #: includes/tables/class-forms-table.php:37
32
  msgid "Shortcode"
33
  msgstr "Código corto"
34
 
35
+ #: includes/tables/class-forms-table.php:38
36
  msgid "List(s)"
37
  msgstr "Lista(s)"
38
 
39
+ #: includes/tables/class-forms-table.php:39
40
  msgid "Last edited"
41
  msgstr "Ultima edición"
42
 
43
+ #: includes/tables/class-forms-table.php:76
44
+ #: includes/tables/class-forms-table.php:80
45
+ msgid "Edit Form"
46
+ msgstr "Editar el formulario"
47
+
48
+ #: includes/tables/class-forms-table.php:77
49
+ msgid "Delete"
50
+ msgstr "Eliminar"
51
+
52
+ #: includes/tables/class-forms-table.php:98
53
+ msgid "No MailChimp list(s) selected yet."
54
+ msgstr "No se han seleccionado todavía ninguna lista de MailChimp"
55
+
56
+ #: includes/tables/class-forms-table.php:105
57
  msgid "You have not created any sign-up forms yet. Time to do so!"
58
+ msgstr "No has creado ningún formulario de registro todavía. ¡Es hora de hacerlo!"
 
59
 
60
+ #: includes/tables/class-log-table.php:33
61
  msgid "Subscriber"
62
  msgstr "Suscriptor"
63
 
64
+ #: includes/tables/class-log-table.php:34
65
  msgid "Subscribers"
66
  msgstr "Suscriptores"
67
 
68
+ #: includes/tables/class-log-table.php:53
69
  msgid "Email"
70
  msgstr "Correo"
71
 
72
+ #: includes/tables/class-log-table.php:54
73
  msgid "List"
74
  msgstr "Lista"
75
 
76
+ #: includes/tables/class-log-table.php:55
77
  msgid "Type"
78
  msgstr "Tipo"
79
 
80
+ #: includes/tables/class-log-table.php:56
81
  msgid "Source"
82
  msgstr "Origen"
83
 
84
+ #: includes/tables/class-log-table.php:57
85
  msgid "Extra data"
86
  msgstr "Datos adicionales"
87
 
88
+ #: includes/tables/class-log-table.php:58
89
  msgid "Subscribed"
90
  msgstr "Suscrito"
91
 
92
+ #: includes/tables/class-log-table.php:192
93
+ #: includes/tables/class-log-table.php:196
94
+ msgid "Comment"
95
+ msgstr "Comentario"
96
+
97
+ #: includes/tables/class-log-table.php:192
98
+ msgid "deleted"
99
+ msgstr "eliminado"
100
+
101
+ #: includes/tables/class-log-table.php:200
102
+ msgid "Registration"
103
+ msgstr "Registro"
104
+
105
+ #: includes/tables/class-log-table.php:216
106
+ msgid "MultiSite registration"
107
+ msgstr "Registro en múltiples sitios"
108
+
109
+ #: includes/tables/class-log-table.php:220
110
+ #: includes/tables/class-log-table.php:224
111
+ msgid "Checkout"
112
+ msgstr "Salir"
113
+
114
+ #: includes/tables/class-log-table.php:229
115
+ msgid "Contact Form 7"
116
+ msgstr "Formulario de contacto 7"
117
+
118
+ #: includes/tables/class-log-table.php:233
119
+ msgid "bbPress: New Topic"
120
+ msgstr "bbPress: Nuevo asunto"
121
+
122
+ #: includes/tables/class-log-table.php:237
123
+ msgid "bbPress: New Reply"
124
+ msgstr "bbPress: Nueva respuesta"
125
+
126
+ #: includes/tables/class-log-table.php:243
127
+ msgid "Other Form"
128
+ msgstr "Otro formulario"
129
+
130
+ #: includes/tables/class-log-table.php:283
131
  msgid "No subscribe requests found."
132
  msgstr "Ninguna solicitud de suscripcion encontrada"
133
 
134
+ #: includes/tables/class-log-table.php:306
135
+ msgid "All"
136
+ msgstr "Todo"
 
 
 
 
 
 
 
137
 
138
+ #: includes/tables/class-log-table.php:318
139
+ msgid "Checkbox"
140
+ msgstr "Casilla de verificación"
141
+
142
+ #: includes/views/metaboxes/optional-form-settings.php:8
143
+ msgid "Any settings you specify here will override the <a href=\"%s\">general form settings</a>. If no setting is specified, the corresponding general setting value will be used."
144
+ msgstr "Los ajustes que especifiques aquí anularán la <a href=\"%s\"> configuración general de los formularios</a>. Si no se especifica ningún valor, se utilizará el valor de ajuste general correspondiente."
145
+
146
+ #: includes/views/metaboxes/optional-form-settings.php:10
147
  msgid "MailChimp Settings"
148
  msgstr "Configuración de MailChimp"
149
 
150
+ #: includes/views/metaboxes/optional-form-settings.php:13
151
+ #: includes/views/pages/admin-checkbox-settings.php:51
152
+ #: includes/views/tabs/admin-forms-general-settings.php:55
153
  msgid "Double opt-in?"
154
  msgstr "¿Doble opt-in?"
155
 
156
+ #: includes/views/metaboxes/optional-form-settings.php:20
157
+ #: includes/views/metaboxes/optional-form-settings.php:34
158
+ #: includes/views/metaboxes/optional-form-settings.php:48
159
+ #: includes/views/metaboxes/optional-form-settings.php:62
160
+ #: includes/views/metaboxes/optional-form-settings.php:79
161
+ #: includes/views/metaboxes/optional-form-settings.php:91
162
  msgid "Inherit"
163
  msgstr "Heredado"
164
 
165
+ #: includes/views/metaboxes/optional-form-settings.php:22
166
+ #: includes/views/pages/admin-checkbox-settings.php:53
167
+ #: includes/views/tabs/admin-forms-general-settings.php:62
168
+ msgid "Select \"yes\" if you want people to confirm their email address before being subscribed (recommended)"
169
+ msgstr "Selecciona \"\" si quieres que los suscriptores confirmen su dirección de correo electrónico antes de suscribirse (recomendado)"
 
 
 
 
170
 
171
+ #: includes/views/metaboxes/optional-form-settings.php:27
172
+ #: includes/views/tabs/admin-forms-general-settings.php:76
173
  msgid "Update existing subscribers?"
174
  msgstr "¿Actualizar los suscriptores existentes?"
175
 
176
+ #: includes/views/metaboxes/optional-form-settings.php:36
177
+ #: includes/views/tabs/admin-forms-general-settings.php:83
178
+ msgid "Select \"yes\" if you want to update existing subscribers (instead of showing the \"already subscribed\" message)."
179
+ msgstr "Selecciona \"\" si quieres actualizar los suscriptores existentes (en lugar de mostrar el mensaje \"ya suscrito \")."
 
 
 
 
180
 
181
+ #: includes/views/metaboxes/optional-form-settings.php:41
182
+ #: includes/views/tabs/admin-forms-general-settings.php:87
183
  msgid "Replace interest groups?"
184
  msgstr "¿Se sustituyen los grupos de interés?"
185
 
186
+ #: includes/views/metaboxes/optional-form-settings.php:50
187
+ #: includes/views/tabs/admin-forms-general-settings.php:94
188
+ msgid "Select \"yes\" if you want to replace the interest groups with the groups provided instead of adding the provided groups to the member's interest groups (only when updating a subscriber)."
189
+ msgstr "Selecciona \"\" si deseas reemplazar los grupos de interés con los grupos previstos en lugar de añadir los grupos previstos para los grupos de interés del usuario (sólo cuando se actualiza un suscriptor)."
 
 
 
 
 
 
190
 
191
+ #: includes/views/metaboxes/optional-form-settings.php:55
192
+ #: includes/views/pages/admin-checkbox-settings.php:57
193
+ #: includes/views/tabs/admin-forms-general-settings.php:66
194
  msgid "Send Welcome Email?"
195
  msgstr "¿Enviar email de bienvenida?"
196
 
197
+ #: includes/views/metaboxes/optional-form-settings.php:64
198
+ #: includes/views/pages/admin-checkbox-settings.php:64
199
+ #: includes/views/tabs/admin-forms-general-settings.php:73
200
+ msgid "Select \"yes\" if you want to send your lists Welcome Email if a subscribe succeeds (only when double opt-in is disabled)."
201
+ msgstr "Selecciona \"\" si deseas enviar a tus listas un correo electrónico de bienvenida si se realiza una suscripción correctamente (sólo cuando el proceso de doble opt-in está desactivado)."
 
 
 
 
 
 
 
 
 
202
 
203
+ #: includes/views/metaboxes/optional-form-settings.php:72
204
+ #: includes/views/tabs/admin-forms-general-settings.php:103
205
  msgid "Enable AJAX form submission?"
206
  msgstr "¿Habilitar AJAX para el envío de formularios?"
207
 
208
+ #: includes/views/metaboxes/optional-form-settings.php:80
209
+ #: includes/views/tabs/admin-forms-general-settings.php:105
210
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
211
+ msgstr "Seleccione \"sí \" si desea utilizar AJAX (JavaScript) en sus formularios"
 
212
 
213
+ #: includes/views/metaboxes/optional-form-settings.php:84
214
+ #: includes/views/tabs/admin-forms-general-settings.php:108
215
  msgid "Hide form after a successful sign-up?"
216
  msgstr "¿Ocultar formulario después de un registro registro satisfactorio?"
217
 
218
+ #: includes/views/metaboxes/optional-form-settings.php:93
219
+ #: includes/views/tabs/admin-forms-general-settings.php:110
220
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
221
+ msgstr "Selecciona \"Sí \" para ocultar los campos de formulario después de un registro satisfactorio."
 
 
222
 
223
+ #: includes/views/metaboxes/optional-form-settings.php:97
224
+ #: includes/views/tabs/admin-forms-general-settings.php:113
225
  msgid "Redirect to URL after successful sign-ups"
226
  msgstr "Redireccionar a una URL tras suscribirse satisfactoriamente."
227
 
228
+ #: includes/views/metaboxes/optional-form-settings.php:100
229
+ #: includes/views/tabs/admin-forms-general-settings.php:116
230
+ msgid "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, including <code>http://</code>"
231
+ msgstr "Dejar en blanco o introduzca 0 para ninguna redirección. Use URLs completas (absolutas), incluyendo <code>http://</ code>"
 
 
 
 
232
 
233
+ #: includes/views/metaboxes/optional-form-settings.php:104
234
  msgid "Send an email copy of the form data?"
235
  msgstr "¿Quieres una copia de los datos del formulario por email?"
236
 
237
+ #: includes/views/metaboxes/optional-form-settings.php:108
238
+ msgid "Tick \"yes\" if you want to receive an email with the form data for every sign-up request."
239
+ msgstr "Marca \"\" si deseas recibir un correo electrónico con los datos del formulario para cada solicitud de registro."
 
 
 
 
240
 
241
+ #: includes/views/metaboxes/optional-form-settings.php:111
242
  msgid "Send the copy to this email:"
243
  msgstr "Envia una copia a este email: "
244
 
245
+ #: includes/views/metaboxes/optional-form-settings.php:117
246
+ msgid "Messages"
247
+ msgstr "Mensajes"
248
+
249
+ #: includes/views/metaboxes/optional-form-settings.php:120
250
+ #: includes/views/tabs/admin-forms-general-settings.php:123
251
+ msgid "Success"
252
+ msgstr "Realizado"
253
+
254
+ #: includes/views/metaboxes/optional-form-settings.php:124
255
+ #: includes/views/tabs/admin-forms-general-settings.php:128
256
+ msgid "Invalid email address"
257
+ msgstr "Dirección de email no válida"
258
+
259
+ #: includes/views/metaboxes/optional-form-settings.php:128
260
+ #: includes/views/tabs/admin-forms-general-settings.php:132
261
+ msgid "Required field missing"
262
+ msgstr "Necesita cubrir todos los campos requeridos"
263
+
264
+ #: includes/views/metaboxes/optional-form-settings.php:132
265
+ #: includes/views/tabs/admin-forms-general-settings.php:136
266
+ msgid "Already subscribed"
267
+ msgstr "Ya está suscrito"
268
+
269
+ #: includes/views/metaboxes/optional-form-settings.php:137
270
+ #: includes/views/tabs/admin-forms-general-settings.php:142
271
+ msgid "Invalid CAPTCHA"
272
+ msgstr "CAPTCHA no válido"
273
+
274
+ #: includes/views/metaboxes/optional-form-settings.php:142
275
+ #: includes/views/tabs/admin-forms-general-settings.php:147
276
+ msgid "Other errors"
277
+ msgstr "Otros errores"
278
+
279
+ #: includes/views/metaboxes/optional-form-settings.php:148
280
+ #: includes/views/tabs/admin-forms-general-settings.php:152
281
  msgid "HTML tags like %s are allowed in the message fields."
282
  msgstr "Las etiquetas HTML como %s están permitidas en los campos del mensaje."
283
 
284
+ #: includes/views/metaboxes/required-form-settings.php:14
285
  msgid "Lists this form subscribes to"
286
  msgstr "Los formularios de esta lista suscriben a"
287
 
288
+ #: includes/views/metaboxes/required-form-settings.php:17
289
+ #: includes/views/pages/admin-checkbox-settings.php:38
 
290
  msgid "No lists found, %sare you connected to MailChimp?%s"
291
  msgstr "No se han encontrado listas, %s¿Esta usted conectado a MailChimp?%s"
292
 
293
+ #: includes/views/metaboxes/required-form-settings.php:29
294
  msgid "Add a new field"
295
  msgstr "Añadir un nuevo campo"
296
 
297
+ #: includes/views/metaboxes/required-form-settings.php:32
298
  msgid "Select MailChimp field.."
299
  msgstr "Seleccione el campo de MailChimp ..."
300
 
301
+ #: includes/views/metaboxes/required-form-settings.php:36
302
  msgid "Submit Button"
303
  msgstr "Botón de alta"
304
 
305
+ #: includes/views/metaboxes/required-form-settings.php:37
306
  msgid "Lists Choice"
307
  msgstr "Seleccionar listas"
308
 
309
+ #: includes/views/metaboxes/required-form-settings.php:45
310
  msgid "Label"
311
  msgstr "Etiqueta"
312
 
313
+ #: includes/views/metaboxes/required-form-settings.php:45
314
+ #: includes/views/metaboxes/required-form-settings.php:50
315
+ #: includes/views/metaboxes/required-form-settings.php:55
316
  msgid "(optional)"
317
  msgstr "(opcional)"
318
 
319
+ #: includes/views/metaboxes/required-form-settings.php:50
320
  msgid "Placeholder"
321
  msgstr "Marcador de posición"
322
 
323
+ #: includes/views/metaboxes/required-form-settings.php:55
324
  msgid "Initial value"
325
  msgstr "Valor inicial"
326
 
327
+ #: includes/views/metaboxes/required-form-settings.php:60
328
  msgid "Labels"
329
  msgstr "Etiquetas"
330
 
331
+ #: includes/views/metaboxes/required-form-settings.php:60
332
  msgid "(leave empty to hide)"
333
  msgstr "(dejar en blanco para ocultar)"
334
 
335
+ #: includes/views/metaboxes/required-form-settings.php:65
 
336
  msgid "Wrap in paragraph %s tags?"
337
  msgstr "¿Envolver las etiquetas %s en el párrafo?"
338
 
339
+ #: includes/views/metaboxes/required-form-settings.php:69
340
  msgid "Required field?"
341
  msgstr "¿Campo obligatorio?"
342
 
343
+ #: includes/views/metaboxes/required-form-settings.php:73
344
  msgid "Add to form"
345
  msgstr "Añadir al formulario"
346
 
347
+ #: includes/views/metaboxes/required-form-settings.php:77
348
  msgid "Generated HTML"
349
  msgstr "Generado HTML"
350
 
351
+ #: includes/views/metaboxes/required-form-settings.php:86
352
  msgid "Form usage"
353
  msgstr "Formulario a emplear"
354
 
355
+ #: includes/views/metaboxes/required-form-settings.php:87
356
+ msgid "Use the shortcode %s to display this form inside a post, page or text widget."
357
+ msgstr "Utiliza el código corto %s para mistrar este formulario dentro de una entrada, artículo o un widget de texto."
 
 
 
 
358
 
359
+ #: includes/views/pages/admin-checkbox-settings.php:11
360
+ #: includes/views/pages/admin-form-settings.php:10
361
+ #: includes/views/pages/admin-general-settings.php:10
362
+ #: includes/views/pages/admin-reports.php:10
363
  msgid "MailChimp for WordPress"
364
  msgstr "MailChimp para WordPress"
365
 
366
+ #: includes/views/pages/admin-checkbox-settings.php:11
367
  msgid "Checkbox Settings"
368
  msgstr "Ajustes de las casillas de verificación"
369
 
370
+ #: includes/views/pages/admin-checkbox-settings.php:14
371
+ msgid "To use sign-up checkboxes, select at least one list and one form to add the checkbox to."
372
+ msgstr "Para activar el registro empleando las casillas de verificación de MailChimp para WordPress, seleccione al menos una lista y un formulario donde añadir dicha casilla de verificación."
 
 
 
 
 
373
 
374
+ #: includes/views/pages/admin-checkbox-settings.php:21
375
  msgid "MailChimp settings for checkboxes"
376
  msgstr "Ajustes de MailChimp para casillas de verificación"
377
 
378
+ #: includes/views/pages/admin-checkbox-settings.php:26
379
+ msgid "If you want to use sign-up checkboxes, select at least one MailChimp list to subscribe people to."
380
+ msgstr "Si desea utilizar las casillas de verificación de registro, seleccione al menos una lista de MailChimp a las que la gente se suscribirá."
 
 
 
 
381
 
382
+ #: includes/views/pages/admin-checkbox-settings.php:34
383
  msgid "MailChimp Lists"
384
  msgstr "Listas de MailChimp"
385
 
386
+ #: includes/views/pages/admin-checkbox-settings.php:45
387
+ msgid "Select the list(s) to which people who check the checkbox should be subscribed."
388
+ msgstr "Selecciona la lista(s) a la que se registrarán las personas que marquen las casillas de verificación."
 
 
 
 
389
 
390
+ #: includes/views/pages/admin-checkbox-settings.php:68
391
  msgid "Checkbox settings"
392
  msgstr "Configuración de las casillas de verificación"
393
 
394
+ #: includes/views/pages/admin-checkbox-settings.php:71
395
  msgid "Add the checkbox to these forms"
396
  msgstr "Añadir casillas de verificación en estos formularios"
397
 
398
+ #: includes/views/pages/admin-checkbox-settings.php:78
399
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
400
+ msgstr "Al seleccionar un formulario se añadirá automaticamente la casilla de verificación de alta al mismo."
 
 
401
 
402
+ #: includes/views/pages/admin-checkbox-settings.php:86
403
+ msgid "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 forms.</p>"
404
+ msgstr "Utilice %s marcadores en su Formulario de Contacto 7 para añadir un checkbox para subscribirse a sus formularios CF7.</p>"
405
+
406
+ #: includes/views/pages/admin-checkbox-settings.php:91
407
  msgid "Checkbox label text"
408
  msgstr "Texto a mostrar junto a la casilla de verificación."
409
 
410
+ #: includes/views/pages/admin-checkbox-settings.php:94
411
+ #: includes/views/pages/admin-checkbox-settings.php:134
 
412
  msgid "HTML tags like %s are allowed in the label text."
413
  msgstr "La etiquetas HTML como %s están permitidas en el texto de la etiqueta."
414
 
415
+ #: includes/views/pages/admin-checkbox-settings.php:98
416
  msgid "Pre-check the checkbox?"
417
  msgstr "¿Dejamos pre-marcada la casilla de verificación?"
418
 
419
+ #: includes/views/pages/admin-checkbox-settings.php:103
420
  msgid "Load some default CSS?"
421
  msgstr "¿Cargamos algunos CSS por defecto?"
422
 
423
+ #: includes/views/pages/admin-checkbox-settings.php:105
424
  msgid "Select \"yes\" if the checkbox appears in a weird place."
425
+ msgstr "Seleccione \"sí \" si la casilla de verificación aparece en un lugar inapropiado"
 
 
426
 
427
+ #: includes/views/pages/admin-checkbox-settings.php:108
428
+ msgid "WooCommerce checkbox position"
429
+ msgstr "Posición de los checkbox en WooCommerce"
 
 
 
430
 
431
+ #: includes/views/pages/admin-checkbox-settings.php:111
432
+ msgid "After the billing details"
433
+ msgstr "Detalles tras la factura"
434
+
435
+ #: includes/views/pages/admin-checkbox-settings.php:112
436
+ msgid "After the additional information"
437
+ msgstr "Tras la información extra"
438
+
439
+ #: includes/views/pages/admin-checkbox-settings.php:115
440
+ msgid "Choose the position for the checkbox in your WooCommerce checkout form."
441
+ msgstr "Escoja la posición de los checkbox en tu formulario de salida de WooCommerce."
442
+
443
+ #: includes/views/pages/admin-checkbox-settings.php:122
444
  msgid "Custom label texts"
445
  msgstr "Etiquetas personalizadas de textos"
446
 
447
+ #: includes/views/pages/admin-checkbox-settings.php:123
448
+ msgid "Override the default checkbox label text for any given checkbox using the fields below."
449
+ msgstr "Sobreescribir la casilla de verificación por defecto en cualquier casilla de verificación empleando los campos de abajo"
 
 
 
 
450
 
451
+ #: includes/views/pages/admin-form-settings.php:13
452
  msgid "Forms & Settings"
453
  msgstr "Ajustes de los formularios"
454
 
455
+ #: includes/views/pages/admin-form-settings.php:14
456
  msgid "CSS Styles Builder"
457
  msgstr "Creador de estilos CSS"
458
 
459
+ #: includes/views/pages/admin-general-settings.php:10
460
  msgid "License & API Settings"
461
  msgstr "Ajustes de licencia y API"
462
 
463
+ #: includes/views/pages/admin-general-settings.php:19
464
  msgid "API Settings"
465
  msgstr "Configuración de la API"
466
 
467
+ #: includes/views/pages/admin-general-settings.php:21
468
  msgid "CONNECTED"
469
  msgstr "CONECTADO"
470
 
471
+ #: includes/views/pages/admin-general-settings.php:23
472
  msgid "NOT CONNECTED"
473
  msgstr "NO CONECTADO"
474
 
475
+ #: includes/views/pages/admin-general-settings.php:29
476
  msgid "API Key"
477
  msgstr "Llave API"
478
 
479
+ #: includes/views/pages/admin-general-settings.php:31
480
  msgid "Your MailChimp API key"
481
  msgstr "Tu clave API de MailChimp"
482
 
483
+ #: includes/views/pages/admin-general-settings.php:32
484
  msgid "Get your API key here."
485
  msgstr "Obtenga su clave de API aquí."
486
 
487
+ #: includes/views/pages/admin-general-settings.php:48
488
  msgid "MailChimp Data"
489
  msgstr "Datos de MailChimp"
490
 
491
+ #: includes/views/pages/admin-general-settings.php:49
492
+ msgid "The table below shows your MailChimp lists data. If you applied changes to your MailChimp lists, please use the following button to renew your cached data."
493
+ msgstr "La siguiente tabla muestra los datos de las listas de MailChimp. Si ha aplicado cambios en las listas de MailChimp, por favor, utilice el botón siguiente para renovar sus datos en caché."
 
 
 
 
 
 
494
 
495
+ #: includes/views/pages/admin-general-settings.php:55
496
+ #: includes/views/pages/admin-general-settings.php:126
497
  msgid "Renew MailChimp lists"
498
  msgstr "Renovar las listas de MailChimp"
499
 
500
+ #: includes/views/pages/admin-general-settings.php:113
501
  msgid "No lists were found in your MailChimp account."
502
  msgstr "No se han encontrado listas en tu cuenta de MailChimp"
503
 
504
+ #: includes/views/pages/admin-reports.php:14
505
  msgid "Statistics"
506
  msgstr "Estadísticas"
507
 
508
+ #: includes/views/pages/admin-reports.php:15
509
  msgid "Log"
510
  msgstr "Log"
511
 
512
+ #: includes/views/parts/admin-footer.php:9
513
+ msgid "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or email me directly at <a href=\"%s\">support@mc4wp.com</a>."
514
+ msgstr "Necesitas ayuda? Échale un ojo a la <a href=\"%s\">documentación del plugin</a> o envíame un email directamente a <a href=\"%s\">support@mc4wp.com</a>."
515
+
516
+ #: includes/views/parts/admin-text-variables.php:13
517
+ msgid "Replaced with the form response (error or success messages)."
518
+ msgstr "Sustituya la respuesta del formulario (mensajes de error ó éxito)."
519
+
520
+ #: includes/views/parts/admin-text-variables.php:18
521
+ msgid "Replaced with a captcha field."
522
+ msgstr "Reemplace con un campo captcha."
523
 
524
+ #: includes/views/parts/admin-text-variables.php:23
525
  msgid "Replaced with the number of subscribers on the selected list(s)"
526
+ msgstr "Se sustituye con el número de suscriptores de la lista seleccionada (s)"
527
+
528
+ #: includes/views/parts/admin-text-variables.php:27
529
+ msgid "Replaced with the current site language, eg: %s"
530
+ msgstr "Reemplace por el idioma actual del sitio, por ejemplo: %s"
531
 
532
+ #: includes/views/parts/admin-text-variables.php:31
533
  msgid "Replaced with the visitor's IP address"
534
  msgstr "Se sustituye por la dirección IP del visitante"
535
 
536
+ #: includes/views/parts/admin-text-variables.php:35
 
537
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
538
  msgstr "Se sustituye con la fecha actual (aaaa/mm/dd ejemplo: %s)"
539
 
540
+ #: includes/views/parts/admin-text-variables.php:39
 
541
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
542
  msgstr "Se susitutiye con la hora actual (hh:mm:ss por ejemplo: %s)"
543
 
544
+ #: includes/views/parts/admin-text-variables.php:43
545
+ msgid "Replaced with the logged in user's email (or nothing, if there is no logged in user)"
546
+ msgstr "Se sustituye con la cuenta de correo del usuario que ha iniciado sesión (o ninguna, si no hay un usuario que ha iniciado sesión)"
 
 
 
 
547
 
548
+ #: includes/views/parts/admin-text-variables.php:47
 
 
 
 
549
  msgid "First name of the current user"
550
  msgstr "Apellido del usuario actual"
551
 
552
+ #: includes/views/parts/admin-text-variables.php:51
553
  msgid "Last name of the current user"
554
  msgstr "Segundo apellido del usuario actual"
555
 
556
+ #: includes/views/parts/admin-text-variables.php:55
557
  msgid "Current user ID"
558
  msgstr "ID de usuario actual"
559
 
560
+ #: includes/views/parts/admin-text-variables.php:59
561
  msgid "Current URL"
562
  msgstr "URL actual"
563
 
564
+ #: includes/views/tabs/admin-forms-css-builder.php:10
565
  msgid "Use the fields below to create custom styling rules for your forms."
566
+ msgstr "Utiliza los campos inferiores para crear reglas de estilo personalizadas para tus formularios."
567
+
568
+ #: includes/views/tabs/admin-forms-css-builder.php:15
569
+ msgid "Select form to build styles for:"
570
+ msgstr "Selecciona el formulario al que desea aplicar estilo:"
571
+
572
+ #: includes/views/tabs/admin-forms-css-builder.php:26
573
+ msgid "Create at least one form first."
574
+ msgstr "Primero crea al menos un formulario"
575
+
576
+ #: includes/views/tabs/admin-forms-css-builder.php:41
577
+ msgid "You need to have JavaScript enabled to see a preview of your form."
578
+ msgstr "Necesitas tener habilitado el JavaScript para previsualizar tu formulario:"
579
+
580
+ #: includes/views/tabs/admin-forms-css-builder.php:223
581
+ msgid "Are you sure you want to delete all custom styles for this form?"
582
+ msgstr "Estás seguro que deseas borrar los estilos personalizados de este formulario?"
583
+
584
+ #: includes/views/tabs/admin-forms-css-builder.php:223
585
+ msgid "Delete Form Styles"
586
+ msgstr "Elimina los estilos del formulario"
587
 
588
+ #: includes/views/tabs/admin-forms-css-builder.php:224
589
+ msgid "Use to delete all styles for this form"
590
+ msgstr "Consigue eliminar todos los estilos de este formulario"
591
+
592
+ #: includes/views/tabs/admin-forms-css-builder.php:231
593
  msgid "Build CSS File"
594
  msgstr "Crear archivo CSS"
595
 
596
+ #: includes/views/tabs/admin-forms-general-settings.php:8
597
  msgid "Sign-Up Forms"
598
  msgstr "Formularios de suscripción"
599
 
600
+ #: includes/views/tabs/admin-forms-general-settings.php:8
601
  msgid "Create New Form"
602
  msgstr "Crear nuevo formulario"
603
 
604
+ #: includes/views/tabs/admin-forms-general-settings.php:16
605
  msgid "General form settings"
606
  msgstr "Configuración general para los formularios"
607
 
608
+ #: includes/views/tabs/admin-forms-general-settings.php:19
609
  msgid "Load form styles (CSS)?"
610
  msgstr "¿Cargamos los estilos CSS por defecto?"
611
 
612
+ #: includes/views/tabs/admin-forms-general-settings.php:23
613
  msgid "Yes, load basic form styles"
614
  msgstr "Si, carga los estilos de formulario básicos"
615
 
616
+ #: includes/views/tabs/admin-forms-general-settings.php:24
617
  msgid "Yes, load my custom form styles"
618
  msgstr "Si, carga mis estilos de formulario personalizados"
619
 
620
+ #: includes/views/tabs/admin-forms-general-settings.php:25
621
  msgid "Yes, load default form theme"
622
  msgstr "Si, carga los ajustes de formulario del tema por defecto"
623
 
624
+ #: includes/views/tabs/admin-forms-general-settings.php:26
625
  msgid "Light Theme"
626
  msgstr "Tema claro"
627
 
628
+ #: includes/views/tabs/admin-forms-general-settings.php:27
629
  msgid "Red Theme"
630
  msgstr "Tema rojo"
631
 
632
+ #: includes/views/tabs/admin-forms-general-settings.php:28
633
  msgid "Green Theme"
634
  msgstr "Tema verde"
635
 
636
+ #: includes/views/tabs/admin-forms-general-settings.php:29
637
  msgid "Blue Theme"
638
  msgstr "Tema azul"
639
 
640
+ #: includes/views/tabs/admin-forms-general-settings.php:30
641
  msgid "Dark Theme"
642
  msgstr "Tema oscuro"
643
 
644
+ #: includes/views/tabs/admin-forms-general-settings.php:31
645
  msgid "Custom Color Theme"
646
  msgstr "Color de tema personalizado"
647
 
648
+ #: includes/views/tabs/admin-forms-general-settings.php:36
649
+ msgid "If you %screated a custom stylesheet%s and want it to be loaded, select \"custom form styles\". Otherwise, choose the basic formatting styles or one of the default themes."
650
+ msgstr "Si %screaste una hoja de estilo personalizada%s y deseas que se cargue, selecciona \"estilos de formulario personalizados \". De lo contrario, elije los estilos de formato básico o uno de los temas por defecto."
 
 
 
 
 
 
 
651
 
652
+ #: includes/views/tabs/admin-forms-general-settings.php:40
653
  msgid "Select Color"
654
  msgstr "Selección de color"
655
 
656
+ #: includes/views/tabs/admin-forms-general-settings.php:48
657
+ msgid "Save all changes"
658
+ msgstr "Guardar todos los cambios"
659
+
660
+ #: includes/views/tabs/admin-forms-general-settings.php:50
661
  msgid "Default MailChimp settings"
662
  msgstr "Ajustes de MailChimp por defecto"
663
 
664
+ #: includes/views/tabs/admin-forms-general-settings.php:51
665
+ #: includes/views/tabs/admin-forms-general-settings.php:99
666
+ msgid "The following settings apply to <strong>all</strong> forms but can be overridden on a per-form basis."
667
+ msgstr "Los siguientes ajustes se aplican a<strong> todos </ strong>los formularios pero pueden reemplazarse uno a uno."
668
+
669
+ #: includes/views/tabs/admin-forms-general-settings.php:98
670
+ msgid "Default Form Settings"
671
+ msgstr "Propiedades por defecto del formulario"
672
+
673
+ #: includes/views/tabs/admin-forms-general-settings.php:120
674
+ msgid "Default Messages"
675
+ msgstr "Mensajes por defecto"
676
+
677
+ msgid "MailChimp for WordPress Pro"
678
+ msgstr "MailChimp para WordPress Pro"
679
+
680
+ msgid "https://mc4wp.com/"
681
+ msgstr "https://mc4wp.com/"
682
+
683
+ msgid "Pro version of MailChimp for WordPress. Adds various sign-up methods to your website."
684
+ msgstr "Version Pro de MailChimp para WordPress. Añade varios métodos de registro a tu website."
685
+
686
+ msgid "Danny van Kooten"
687
+ msgstr "Danny van Kooten"
688
+
689
+ msgid "http://dannyvankooten.com"
690
+ msgstr "http://dannyvankooten.com"
691
+
692
+ #: includes/admin/class-admin.php:215
693
+ msgid "Settings"
694
+ msgstr "Configuración"
695
+
696
+ #: includes/admin/class-admin.php:234
697
+ msgid "Documentation"
698
+ msgstr "Documentacion"
699
+
700
+ #: includes/admin/class-admin.php:277
701
+ msgid "Save Form"
702
+ msgstr "Guardar formulario"
703
+
704
+ #: includes/admin/class-admin.php:281
705
+ msgid "Update Form"
706
+ msgstr "Actualizar formulario"
707
+
708
+ #: includes/admin/class-admin.php:314
709
+ msgid "Your email address"
710
+ msgstr "Tu dirección de correo electrónico"
711
+
712
+ #: includes/admin/class-admin.php:315
713
+ msgid "Email address"
714
+ msgstr "Dirección de correo electrónico"
715
+
716
+ #: includes/admin/class-admin.php:316
717
+ msgid "Sign up"
718
+ msgstr "Registro"
719
+
720
+ #: includes/admin/class-admin.php:332
721
+ msgid "Back to general form settings"
722
+ msgstr "Volver a las opciones de configuracion generales"
723
+
724
+ #: includes/admin/class-admin.php:334
725
+ msgid "Form updated."
726
+ msgstr "Formulario actualizado."
727
+
728
+ #: includes/admin/class-admin.php:335
729
+ msgid "Form saved."
730
+ msgstr "Formulario guardado."
731
+
732
+ #: includes/admin/class-admin.php:343
733
+ msgid "An EMAIL field. Example: <code>%s</code>"
734
+ msgstr "Un campo EMAIL. Por ejemplo: <code>%s</code>"
735
+
736
+ #: includes/admin/class-admin.php:349
737
+ msgid "A submit button. Example: <code>%s</code>"
738
+ msgstr "Un botón para enviar. Por ejemplo: <code>%s</code>"
739
+
740
+ #: includes/admin/class-admin.php:349
741
+ msgid "Sign Up"
742
+ msgstr "Regístrate"
743
+
744
+ #: includes/admin/class-admin.php:377
745
+ msgid "A '%s' field"
746
+ msgstr "Un campo '%s'"
747
+
748
+ #: includes/admin/class-admin.php:389
749
+ msgid "Your form is missing the following (required) form fields:"
750
+ msgstr "Tu formulario necesita los siguientes campos (requeridos):"
751
+
752
+ #: includes/admin/class-admin.php:461
753
+ #: includes/views/metaboxes/optional-form-settings.php:69
754
+ msgid "Form Settings"
755
+ msgstr "Propiedades del formulario"
756
+
757
+ #: includes/admin/class-admin.php:462
758
+ msgid "Optional Settings"
759
+ msgstr "Propiedades Opcionales"
760
+
761
+ #: includes/admin/class-admin.php:463
762
+ msgid "Form Variables"
763
+ msgstr "Variables del formulario"
764
+
765
+ #: includes/admin/class-admin.php:503
766
+ msgid "Use the following variables to add some dynamic content to your form."
767
+ msgstr "Utiliza las siguientes variables para añadir algo de contenido dinámico a tu formulario"
768
+
769
+ #: includes/admin/class-admin.php:601
770
+ msgid "MailChimp & License"
771
+ msgstr "MailChimp & Licencia"
772
+
773
+ #: includes/admin/class-admin.php:602
774
+ msgid "Checkboxes"
775
+ msgstr "Casillas de verificación"
776
+
777
+ #: includes/admin/class-admin.php:603
778
+ #: includes/views/pages/admin-form-settings.php:10
779
+ msgid "Forms"
780
+ msgstr "Formularios"
781
+
782
+ #: includes/admin/class-admin.php:604 includes/views/pages/admin-reports.php:10
783
+ msgid "Reports"
784
+ msgstr "Informes"
785
+
786
+ #: includes/admin/class-admin.php:701
787
+ msgid "Comment form"
788
+ msgstr "Formulario de comentarios"
789
+
790
+ #: includes/admin/class-admin.php:702
791
+ msgid "Registration form"
792
+ msgstr "Formulario de registros"
793
+
794
+ #: includes/admin/class-admin.php:706
795
+ msgid "MultiSite forms"
796
+ msgstr "Formularios MultiSite"
797
+
798
+ #: includes/admin/class-admin.php:710 includes/tables/class-log-table.php:212
799
+ msgid "BuddyPress registration"
800
+ msgstr "Regitro BuddyPress"
801
+
802
+ #: includes/admin/class-admin.php:718 includes/admin/class-admin.php:722
803
+ msgid "%s checkout"
804
+ msgstr "verificación de %s"
805
+
806
+ #: includes/admin/class-admin.php:758
807
+ msgid "Please make sure the plugin is connected to MailChimp. <a href=\"%s\">Provide a valid API key.</a>"
808
+ msgstr "Por favor, asegúrrate de que el plugin está conectado a MailChimp. <a href=\"%s\"> Proporciona una clave de API válida. </a>"
809
+
810
+ #: includes/admin/class-admin.php:768
811
+ msgid "Renewed MailChimp cache."
812
+ msgstr "Renovar cache de MailChimp"
813
+
814
+ #: includes/admin/class-admin.php:770
815
+ msgid "Failed to renew MailChimp cache - please try again later."
816
+ msgstr "Fallo al renovar la cache de MailChimp - Por favor, intentelo de nuevo más tarde."
817
+
818
+ #: includes/admin/class-admin.php:860
819
+ msgid "End date can't be before the start date"
820
+ msgstr "La fecha final no puede ser anterior a la fecha de inicio"
821
+
822
+ #: includes/admin/class-admin.php:892
823
+ msgid "You disabled logging using the %s filter. Re-enable it to use the Reports page."
824
+ msgstr "Has desabilitado la entrada utilizando el filtro %s. Re-habilítalo para usar la página de Informes."
825
+
826
+ #: includes/admin/class-admin.php:908
827
+ msgid "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the settings you had set in the Lite version, please <a href=\"%s\">deactivate it now</a> to prevent problems"
828
+ msgstr "<strong> ¡Bienvenido a MailChimp para WordPress Pro! </ strong> Hemos transferido los ajustes que habías establecido en la versión Lite, por favor <a href=\"%s\">desactívala ahora</a> para evitar problemas."
829
+
830
+ #: includes/admin/class-styles-builder.php:319
831
+ msgid "Couldn't create the stylesheet. Manually add the generated CSS to your theme stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
832
+ msgstr "No se pudo crear la hoja de estilo. Agrega manualmente el CSS generado a tu hoja de estilo del tema utilizando el %sEditor del Temas%s s o utiliza FTP y edita <em>%s</ em>."
833
+
834
+ #: includes/admin/class-styles-builder.php:320
835
+ msgid "%sShow generated CSS%s"
836
+ msgstr "%sMuestra el CSS generado%s"
837
+
838
+ #: includes/admin/class-styles-builder.php:330
839
+ msgid "To apply these styles on your website, select \"load custom form styles\" in the %sform settings%s"
840
+ msgstr "Para aplicar estos estilos en tu sitio web, selecciona \"cargar estilos de formulario personalizado\" en los %sajustes de formulario%s"
841
+
842
+ #: includes/admin/class-styles-builder.php:331
843
+ msgid "The %sCSS Stylesheet%s has been created."
844
+ msgstr "La %shoja de estilos CSS%s ha sido creada."
845
+
846
+ #: includes/class-form-manager.php:239
847
+ msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
848
+ msgstr "<strong>Error:</strong> Por favor, especifica un ID de formulario. Ejemplo: %s."
849
+
850
+ #: includes/class-form-manager.php:253
851
+ msgid "<strong>Error:</strong> Sign-up form not found. Please check if you used the correct form ID."
852
+ msgstr "<strong> Error: </strong> formulario de registro no encontrado. Por favor, comprueba si has utilizado el ID de formulario correcto."
853
+
854
+ #: includes/class-form-request.php:453
855
+ msgid "New Sign-Up"
856
+ msgstr "Nuevo registro"
857
+
858
+ #: includes/class-form-request.php:454
859
+ msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
860
+ msgstr "<strong>%s</strong> fomulario de alta en %s en %s está utilizando el formato \"%s \"."
861
+
862
+ #: includes/class-form-request.php:495
863
+ msgid "Note that you've enabled double opt-in for the \"%s\" form. The user won't be added to the selected MailChimp lists until they confirm their email address."
864
+ msgstr "Date cuenta que has habilitado la doble opción para el formulario \"%s\". El usuario no se añadirá a las listas seleccionadas de MailChimp hasta que ellos confirmen sus direcciones de email. "
865
+
866
+ #: includes/class-form-request.php:498
867
+ msgid "This email was auto-sent by the MailChimp for WordPress plugin."
868
+ msgstr "Este correo fue auto-enviado por el plugin MailChimp para WordPress"
869
+
870
+ #: includes/class-widget.php:20
871
+ msgid "MailChimp for WP Form"
872
+ msgstr "MailChimp para el Formulario de WP"
873
+
874
+ #: includes/class-widget.php:21
875
+ msgid "Displays one of your MailChimp for WordPress sign-up forms"
876
+ msgstr "Muestra uno de tus formularios de MailChimp para Wordpress"
877
+
878
+ #: includes/class-widget.php:39
879
+ msgid "Please select the sign-up form you'd like to show here in the <a href=\"%s\">widget settings</a>."
880
+ msgstr "Por favor, seleccione el formulario de registro que te gustaría mostrar aquí en los<a href=\"%s\"> ajustes del widget</ a>."
881
+
882
+ #: includes/class-widget.php:68
883
+ msgid "Newsletter"
884
+ msgstr "Newsletter"
885
+
886
+ #: includes/class-widget.php:79
887
+ msgid "Title:"
888
+ msgstr "Título:"
889
+
890
+ #: includes/class-widget.php:83
891
+ msgid "Form:"
892
+ msgstr "Fomulario:"
893
+
894
+ #: includes/class-widget.php:85
895
+ msgid "Select the form to show"
896
+ msgstr "Seleccione el formulario a mostrar"
897
+
898
+ #: includes/class-widget.php:93
899
+ msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
900
+ msgstr "No tienes ningún formulario de inscripción. <a href=\"%s\">Crea uno ahora.</ a>"
901
+
902
+ #: includes/functions/general.php:20
903
+ msgid "Sign me up for the newsletter!"
904
+ msgstr "¡Suscríbeme a la lista de suscriptores!"
905
+
906
+ #: includes/functions/general.php:43
907
+ msgid "Thank you, your sign-up request was successful! Please check your email inbox to confirm."
908
+ msgstr "Gracias, tu solicitud de registro se ha realizado con éxito. Por favor revisa la bandeja de entrada de tu email."
909
+
910
+ #: includes/functions/general.php:44
911
+ msgid "Oops. Something went wrong. Please try again later."
912
+ msgstr "Ups. Algo salió mal. Por favor, intentalo otra vez más tarde. "
913
 
914
+ #: includes/functions/general.php:45
915
+ msgid "Please provide a valid email address."
916
+ msgstr "Por favor, introduce una cuenta de correo valida"
917
+
918
+ #: includes/functions/general.php:46
919
+ msgid "Given email address is already subscribed, thank you!"
920
+ msgstr "La dirección de correo electrónico facilitada ya está suscrita, ¡gracias!"
921
+
922
+ #: includes/functions/general.php:47
923
+ msgid "Please complete the CAPTCHA."
924
+ msgstr "Por favor, introduce el código de seguridad"
925
+
926
+ #: includes/functions/general.php:48
927
+ msgid "Please fill in the required fields."
928
+ msgstr "Por favor rellena los campos solicitados."
929
+
930
+ #: includes/integrations/class-cf7.php:44
931
+ #: includes/views/metaboxes/optional-form-settings.php:16
932
+ #: includes/views/metaboxes/optional-form-settings.php:30
933
+ #: includes/views/metaboxes/optional-form-settings.php:44
934
+ #: includes/views/metaboxes/optional-form-settings.php:58
935
+ #: includes/views/metaboxes/optional-form-settings.php:75
936
+ #: includes/views/metaboxes/optional-form-settings.php:87
937
+ #: includes/views/metaboxes/optional-form-settings.php:106
938
+ #: includes/views/pages/admin-checkbox-settings.php:52
939
+ #: includes/views/pages/admin-checkbox-settings.php:60
940
+ #: includes/views/pages/admin-checkbox-settings.php:99
941
+ #: includes/views/pages/admin-checkbox-settings.php:104
942
+ #: includes/views/tabs/admin-forms-general-settings.php:58
943
+ #: includes/views/tabs/admin-forms-general-settings.php:69
944
+ #: includes/views/tabs/admin-forms-general-settings.php:79
945
+ #: includes/views/tabs/admin-forms-general-settings.php:90
946
+ #: includes/views/tabs/admin-forms-general-settings.php:104
947
+ #: includes/views/tabs/admin-forms-general-settings.php:109
948
+ msgid "Yes"
949
+ msgstr "Si"
950
+
951
+ #: includes/integrations/class-cf7.php:44
952
+ #: includes/views/metaboxes/optional-form-settings.php:18
953
+ #: includes/views/metaboxes/optional-form-settings.php:32
954
+ #: includes/views/metaboxes/optional-form-settings.php:46
955
+ #: includes/views/metaboxes/optional-form-settings.php:60
956
+ #: includes/views/metaboxes/optional-form-settings.php:77
957
+ #: includes/views/metaboxes/optional-form-settings.php:89
958
+ #: includes/views/metaboxes/optional-form-settings.php:107
959
+ #: includes/views/pages/admin-checkbox-settings.php:52
960
+ #: includes/views/pages/admin-checkbox-settings.php:62
961
+ #: includes/views/pages/admin-checkbox-settings.php:99
962
+ #: includes/views/pages/admin-checkbox-settings.php:104
963
+ #: includes/views/tabs/admin-forms-general-settings.php:22
964
+ #: includes/views/tabs/admin-forms-general-settings.php:60
965
+ #: includes/views/tabs/admin-forms-general-settings.php:71
966
+ #: includes/views/tabs/admin-forms-general-settings.php:81
967
+ #: includes/views/tabs/admin-forms-general-settings.php:92
968
+ #: includes/views/tabs/admin-forms-general-settings.php:104
969
+ #: includes/views/tabs/admin-forms-general-settings.php:109
970
+ msgid "No"
971
+ msgstr "No"
972
+
973
+ #: includes/library/license-manager/class-license-manager.php:152
974
+ msgid "I know. Don't bug me."
975
+ msgstr "Lo sé. No me fastidies."
976
+
977
+ #: includes/library/license-manager/class-license-manager.php:171
978
+ msgid "<b>Warning!</b> You're blocking external requests which means you won't be able to get %s updates. Please add %s to %s."
979
+ msgstr "<b>Advertencia!</ b> Esta bloqueando solicitudes externas lo que significa que no será capaz de obtener las actualizaciones de %s. Por favor, añada %s para %s."
980
+
981
+ #: includes/library/license-manager/class-license-manager.php:213
982
+ msgid "Your %s license has been activated. You have an unlimited license. "
983
+ msgstr "Su licencia de %s ha sido activada. Tiene una licencia ilimitada."
984
+
985
+ #: includes/library/license-manager/class-license-manager.php:215
986
+ msgid "Your %s license has been activated. You have used %d/%d activations. "
987
+ msgstr "Su licencia de %s ha sido activada. Ha utilizado %d/%d activaciones."
988
+
989
+ #: includes/library/license-manager/class-license-manager.php:220
990
+ msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
991
+ msgstr "<a href=\"%s\">¿Sabía que usted puede actualizar su licencia?</a>"
992
+
993
+ #: includes/library/license-manager/class-license-manager.php:224
994
+ msgid "<a href=\"%s\">Your license is expiring in %d days, would you like to extend it?</a>"
995
+ msgstr "<a href=\"%s\">Su licencia expira en %d días, ¿le gustaría ampliarla?</a>"
996
+
997
+ #: includes/library/license-manager/class-license-manager.php:233
998
+ msgid "You've reached your activation limit. You must <a href=\"%s\">reset</a> or <a href=\"%s\">upgrade your license</a> to use it on this site."
999
+ msgstr "Has alcanzado el límite de tus activaciones. Debes <a href=\"%s\">reestablecer</a> o <a href=\"%s\">actualizar tu licencia</a> para usarlo en este sitio."
1000
+
1001
+ #: includes/library/license-manager/class-license-manager.php:236
1002
+ msgid "Your license has expired. You must <a href=\"%s\">extend your license</a> in order to use it again."
1003
+ msgstr "Su licencia ha expirado. Debes <a href=\"%s\">ampliar la licencia</ a> con el fin de utilizarlo de nuevo."
1004
+
1005
+ #: includes/library/license-manager/class-license-manager.php:239
1006
+ msgid "Failed to activate your license, your license key seems to be invalid."
1007
+ msgstr "No se pudo activar la licencia, la clave de licencia parece inválida."
1008
 
1009
+ #: includes/library/license-manager/class-license-manager.php:264
1010
+ msgid "Your %s license has been deactivated."
1011
+ msgstr "Su licencia de %s se ha desactivado."
1012
+
1013
+ #: includes/library/license-manager/class-license-manager.php:266
1014
+ msgid "Failed to deactivate your %s license."
1015
+ msgstr "No se pudo desactivar su licencia de %s"
1016
+
1017
+ #: includes/library/license-manager/class-license-manager.php:304
1018
+ msgid "Request error: \"%s\""
1019
+ msgstr "Error de solicitud: \"%s\""
1020
+
1021
+ #: includes/library/license-manager/class-license-manager.php:463
1022
+ msgid "%s: License Settings"
1023
+ msgstr "%s: Configuración de licencia"
1024
+
1025
+ #: includes/library/license-manager/class-plugin-license-manager.php:67
1026
+ msgid "%s is network activated, please contact your site administrator to manage the license."
1027
+ msgstr "%s si la red está activada, por favor póngase en contacto con el administrador del sitio para gestionar la licencia."
1028
+
1029
+ #: includes/library/license-manager/class-update-manager.php:69
1030
+ msgid "%s failed to check for updates because of the following error: <em>%s</em>"
1031
+ msgstr "%s fallo al comprobar las actualizaciones debido al siguiente error: <em>%s</ em>"
1032
+
1033
+ #: includes/library/license-manager/class-update-manager.php:131
1034
+ msgid "This site has not been activated properly on dannyvankooten.com and thus cannot check for future updates. Please activate your site with a valid license key."
1035
+ msgstr "Este sitio no se ha activado correctamente en dannyvankooten.com y por lo tanto no se puede comprobar si hay actualizaciones. Por favor, active su sitio con una clave de licencia válida."
1036
+
1037
+ #: includes/library/license-manager/views/form.php:23
1038
+ msgid "License status"
1039
+ msgstr "Estado de la licencia"
1040
+
1041
+ #: includes/library/license-manager/views/form.php:33
1042
+ msgid "Toggle license status"
1043
+ msgstr "Estado de la licencia"
1044
+
1045
+ #: includes/library/license-manager/views/form.php:37
1046
+ msgid "Deactivate License"
1047
+ msgstr "Desactiva la licencia"
1048
 
1049
+ #: includes/library/license-manager/views/form.php:38
1050
+ msgid "(deactivate your license so you can activate it on another WordPress site)"
1051
+ msgstr "(desactivar la licencia para que pueda activarla en otro sitio de WordPress)"
1052
 
1053
+ #: includes/library/license-manager/views/form.php:42
1054
+ msgid "Activate License"
1055
+ msgstr "Activar la licencia"
1056
+
1057
+ #: includes/library/license-manager/views/form.php:44
1058
+ msgid "Please enter a license key in the field below first."
1059
+ msgstr "Por favor, primero introduce una clave de licencia en campo de abajo"
1060
+
1061
+ #: includes/library/license-manager/views/form.php:52
1062
+ msgid "License Key"
1063
+ msgstr "Llave de licencia"
1064
+
1065
+ #: includes/library/license-manager/views/form.php:54
1066
+ msgid "Paste your license key here, as found in the email receipt."
1067
+ msgstr "Pega aquí la clave de tu licencia, que encontrarás en el email recibido."
1068
+
1069
+ #: includes/library/license-manager/views/form.php:56
1070
+ msgid "You defined your license key using the %s PHP constant."
1071
+ msgstr "Ha definido la clave de licencia utilizando el %s PHP constante."
languages/mailchimp-for-wp-it_IT.mo CHANGED
Binary file
languages/mailchimp-for-wp-it_IT.po CHANGED
@@ -1,1314 +1,1073 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: MailChimp for WordPress Pro v2.3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-08-12 15:11+0100\n"
6
- "PO-Revision-Date: 2014-08-12 20:37:51+0000\n"
7
- "Last-Translator: Gianpaolo <gr@gianpaolorolando.eu>\n"
8
- "Language-Team: Gianpaolo <gr@gianpaolorolando.eu>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.6.6\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: ..\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: includes/admin/class-admin.php:183
24
- #@ default
25
- msgid "Settings"
26
- msgstr "Impostazioni"
27
-
28
- #: includes/admin/class-admin.php:202
29
- #@ mailchimp-for-wp
30
- msgid "Documentation"
31
- msgstr "Documentazione"
32
-
33
- #: includes/admin/class-admin.php:245
34
- #@ mailchimp-for-wp
35
- msgid "Save Form"
36
- msgstr "Salva Modulo"
37
-
38
- #: includes/admin/class-admin.php:249
39
- #@ mailchimp-for-wp
40
- msgid "Update Form"
41
- msgstr "Aggiorna Modulo"
42
-
43
- #: includes/admin/class-admin.php:282
44
- #@ mailchimp-for-wp
45
- msgid "Your email address"
46
- msgstr "Il tuo indirizzo E-M@il"
47
-
48
- #: includes/admin/class-admin.php:283
49
- #@ mailchimp-for-wp
50
- msgid "Email address"
51
- msgstr "Indirizzo E-M@il"
52
-
53
- #: includes/admin/class-admin.php:284
54
- #@ mailchimp-for-wp
55
- msgid "Sign up"
56
- msgstr "Iscriviti"
57
-
58
- #: includes/admin/class-admin.php:300
59
- #@ mailchimp-for-wp
60
- msgid "Back to general form settings"
61
- msgstr "Torna alle impostazioni generali"
62
-
63
- #: includes/admin/class-admin.php:302
64
- #@ mailchimp-for-wp
65
- msgid "Form updated."
66
- msgstr "Modulo aggiornato."
67
-
68
- #: includes/admin/class-admin.php:303
69
- #@ mailchimp-for-wp
70
- msgid "Form saved."
71
- msgstr "Modulo salvato."
72
-
73
- #: includes/admin/class-admin.php:311
74
- #, php-format
75
- #@ mailchimp-for-wp
76
- msgid "An EMAIL field. Example: <code>%s</code>"
77
- msgstr "Un campo E-M@il. Esempio: <code>%s</code>"
78
-
79
- #: includes/admin/class-admin.php:317
80
- #, php-format
81
- #@ mailchimp-for-wp
82
- msgid "A submit button. Example: <code>%s</code>"
83
- msgstr "Pulsante di conferma. Esempio: <code>%s</code>"
84
-
85
- #: includes/admin/class-admin.php:317
86
- #@ mailchimp-for-wp
87
- msgid "Sign Up"
88
- msgstr "Iscriviti"
89
-
90
- #: includes/admin/class-admin.php:345
91
- #, php-format
92
- #@ mailchimp-for-wp
93
- msgid "A '%s' field"
94
- msgstr "Un '%s' campo"
95
-
96
- #: includes/admin/class-admin.php:357
97
- #@ mailchimp-for-wp
98
- msgid "Your form is missing the following (required) form fields:"
99
- msgstr "Nel modulo mancano i seguenti campi obbligatori:"
100
-
101
- #: includes/admin/class-admin.php:429
102
- #@ mailchimp-for-wp
103
- msgid "Form Settings"
104
- msgstr "Settaggi Modulo"
105
-
106
- #: includes/admin/class-admin.php:430
107
- #@ mailchimp-for-wp
108
- msgid "Optional Settings"
109
- msgstr "Settaggi Opzionali"
110
-
111
- #: includes/admin/class-admin.php:431
112
- #@ mailchimp-for-wp
113
- msgid "Form Variables"
114
- msgstr "Variabili Modulo"
115
-
116
- #: includes/admin/class-admin.php:465
117
- #@ mailchimp-for-wp
118
- msgid "Use the following variables to add some dynamic content to your form."
119
- msgstr "Utilizzare le seguenti variabili per aggiungere alcuni contenuti dinamici al form."
120
-
121
- #: includes/admin/class-admin.php:547
122
- #@ mailchimp-for-wp
123
- msgid "MailChimp & License"
124
- msgstr "MailChimp & Licenza"
125
-
126
- #: includes/admin/class-admin.php:548
127
- #@ mailchimp-for-wp
128
- msgid "Checkboxes"
129
- msgstr ""
130
-
131
- #: includes/admin/class-admin.php:549
132
- #: includes/views/pages/admin-form-settings.php:10
133
- #@ mailchimp-for-wp
134
- msgid "Forms"
135
- msgstr "Moduli"
136
-
137
- #: includes/admin/class-admin.php:550
138
- #: includes/views/pages/admin-reports.php:10
139
- #@ mailchimp-for-wp
140
- msgid "Reports"
141
- msgstr "Rapporti"
142
-
143
- #: includes/admin/class-admin.php:634
144
- #@ mailchimp-for-wp
145
- msgid "Comment form"
146
- msgstr "Modulo Commenti"
147
-
148
- #: includes/admin/class-admin.php:635
149
- #@ mailchimp-for-wp
150
- msgid "Registration form"
151
- msgstr "Modulo Registrazione"
152
-
153
- #: includes/admin/class-admin.php:639
154
- #@ mailchimp-for-wp
155
- msgid "MultiSite forms"
156
- msgstr "Modulo MultiSite"
157
-
158
- #: includes/admin/class-admin.php:643
159
- #: includes/tables/class-log-table.php:212
160
- #@ mailchimp-for-wp
161
- msgid "BuddyPress registration"
162
- msgstr "Registrazione BuddyPress"
163
-
164
- #: includes/admin/class-admin.php:651
165
- #: includes/admin/class-admin.php:655
166
- #, php-format
167
- #@ mailchimp-for-wp
168
- msgid "%s checkout"
169
- msgstr "%s cassa"
170
-
171
- #: includes/admin/class-admin.php:689
172
- #, php-format
173
- #@ mailchimp-for-wp
174
- msgid "Please make sure the plugin is connected to MailChimp. <a href=\"%s\">Provide a valid API key.</a>"
175
- msgstr "Si prega di assicurarsi che il plugin sia collegato a MailChimp. <a href=\"%s\">Inserire una chiave API valida.</a>"
176
-
177
- #: includes/admin/class-admin.php:699
178
- #@ mailchimp-for-wp
179
- msgid "Renewed MailChimp cache."
180
- msgstr "Aggiorna la cache di MailChimp"
181
-
182
- #: includes/admin/class-admin.php:701
183
- #@ mailchimp-for-wp
184
- msgid "Failed to renew MailChimp cache - please try again later."
185
- msgstr "Impossibile aggiornare la cache MailChimp - si prega di riprovare piu' tardi."
186
-
187
- #: includes/admin/class-admin.php:779
188
- #@ mailchimp-for-wp
189
- msgid "End date can't be before the start date"
190
- msgstr "La data di fine non puo' essere antecedente alla data di inizio"
191
-
192
- #: includes/admin/class-admin.php:811
193
- #, php-format
194
- #@ mailchimp-for-wp
195
- msgid "You disabled logging using the %s filter. Re-enable it to use the Reports page."
196
- msgstr "Hai disattivato il log utilizzando il %s filtro. Riattivalo per utilizzare le relazioni di pagina."
197
-
198
- #: includes/admin/class-admin.php:827
199
- #, php-format
200
- #@ mailchimp-for-wp
201
- msgid "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the settings you had set in the Lite version, please <a href=\"%s\">deactivate it now</a> to prevent problems"
202
- msgstr "\"<strong>Benvenuti a MailChimp per WordPress Pro!</strong> Abbiamo trasferito le impostazioni inserite nella versione Lite, perfavore <a href=\"%s\">disattivarlo </a> per prevenire problemi\""
203
-
204
- #: includes/admin/class-css-builder.php:270
205
- #, php-format
206
- #@ mailchimp-for-wp
207
- msgid "Couldn't create the stylesheet. Manually add the generated CSS to your theme stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
208
- msgstr "Impossibile creare il foglio di stile. Aggiungere manualmente il CSS generato per il vostro foglio di stile utilizzando il %sTheme Editor%s o utilizzare FTP e modificare <em>%s</ em>."
209
-
210
- #: includes/admin/class-css-builder.php:271
211
- #, php-format
212
- #@ mailchimp-for-wp
213
- msgid "%sShow generated CSS%s"
214
- msgstr "%sMostra CSS generato%s"
215
-
216
- #: includes/admin/class-css-builder.php:281
217
- #, php-format
218
- #@ mailchimp-for-wp
219
- msgid "To apply these styles on your website, select \"load custom form styles\" in the %sform settings%s"
220
- msgstr "Per applicare questi stili sul tuo sito web, selezionare \"caricare stili di modulo personalizzato\" nel %s moduloimpostazioni di %s"
221
-
222
- #: includes/admin/class-css-builder.php:282
223
- #, php-format
224
- #@ mailchimp-for-wp
225
- msgid "The %sCSS Stylesheet%s has been created."
226
- msgstr "Il %sCSS foglio di stile%s è stato creato."
227
-
228
- #: includes/class-form-manager.php:238
229
- #, php-format
230
- #@ mailchimp-for-wp
231
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
232
- msgstr "<strong> Errore: </ strong> Si prega di specificare un ID del modulo. Esempio: %s."
233
-
234
- #: includes/class-form-manager.php:252
235
- #@ mailchimp-for-wp
236
- msgid "<strong>Error:</strong> Sign-up form not found. Please check if you used the correct form ID."
237
- msgstr "<strong> Errore: </ strong> modulo di iscrizione non trovato. Si prega di verificare se è stato utilizzato l'ID di modulo corretto."
238
-
239
- #: includes/class-form-request.php:453
240
- #@ mailchimp-for-wp
241
- msgid "New Sign-Up"
242
- msgstr "Nuova iscrizione"
243
-
244
- #: includes/class-form-request.php:454
245
- #, php-format
246
- #@ mailchimp-for-wp
247
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
248
- msgstr "<strong>%s</ strong> firmato a %s su %s utilizzando il modulo \"%s\"."
249
-
250
- #: includes/class-form-request.php:493
251
- #@ mailchimp-for-wp
252
- msgid "This email was auto-sent by the MailChimp for WordPress plugin."
253
- msgstr "Questa email è stata auto-inviata da MailChimp per WordPress."
254
-
255
- #: includes/class-widget.php:20
256
- #@ mailchimp-for-wp
257
- msgid "MailChimp for WP Form"
258
- msgstr "Modulo MailChimp per WP"
259
-
260
- #: includes/class-widget.php:21
261
- #@ mailchimp-for-wp
262
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
263
- msgstr "Visualizza uno dei tuoi moduli di iscrizione di MailChimp per WordPress"
264
-
265
- #: includes/class-widget.php:39
266
- #, php-format
267
- #@ mailchimp-for-wp
268
- msgid "Please select the sign-up form you'd like to show here in the <a href=\"%s\">widget settings</a>."
269
- msgstr "Si prega di selezionare il modulo di iscrizione che vuoi mostrare qui in <a href=\"%s\"> impostazioni dei widget </a>."
270
-
271
- #: includes/class-widget.php:68
272
- #@ mc4wp
273
- msgid "Newsletter"
274
- msgstr ""
275
-
276
- #: includes/class-widget.php:79
277
- #@ mailchimp-for-wp
278
- msgid "Title:"
279
- msgstr "Titolo:"
280
-
281
- #: includes/class-widget.php:83
282
- #@ mailchimp-for-wp
283
- msgid "Form:"
284
- msgstr "Modulo:"
285
-
286
- #: includes/class-widget.php:85
287
- #@ mailchimp-for-wp
288
- msgid "Select the form to show"
289
- msgstr "Selezionatre il modulo da visualizzare"
290
-
291
- #: includes/class-widget.php:93
292
- #, php-format
293
- #@ mailchimp-for-wp
294
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
295
- msgstr "Non hai alcun modulo di iscrizione. <a href=\"%s\"> Creane uno adesso. </a>"
296
-
297
- #: includes/functions/general.php:20
298
- #@ mailchimp-for-wp
299
- msgid "Sign me up for the newsletter!"
300
- msgstr "Iscrivimi alla newsletter!"
301
-
302
- #: includes/functions/general.php:42
303
- #@ mailchimp-for-wp
304
- msgid "Thank you, your sign-up request was successful! Please check your email inbox to confirm."
305
- msgstr "Grazie, la tua richiesta di iscrizione ha avuto successo! Controlla la tua E-M@il per confermare."
306
-
307
- #: includes/functions/general.php:43
308
- #@ mailchimp-for-wp
309
- msgid "Oops. Something went wrong. Please try again later."
310
- msgstr "Oops. Qualcosa è andato storto. Riprova più tardi."
311
-
312
- #: includes/functions/general.php:44
313
- #@ mailchimp-for-wp
314
- msgid "Please provide a valid email address."
315
- msgstr "Si prega di fornire un indirizzo E-M@il valido."
316
-
317
- #: includes/functions/general.php:45
318
- #@ mailchimp-for-wp
319
- msgid "Given email address is already subscribed, thank you!"
320
- msgstr "Indirizzo E-M@il inserito è già iscritto, grazie!"
321
-
322
- #: includes/functions/general.php:46
323
- #@ mailchimp-for-wp
324
- msgid "Please complete the CAPTCHA."
325
- msgstr "Si prega di compilare il CAPTCHA."
326
-
327
- #: includes/functions/general.php:47
328
- #@ mailchimp-for-wp
329
- msgid "Please fill in the required fields."
330
- msgstr "Si prega di compilare i campi obbligatori."
331
-
332
- #: includes/integrations/class-cf7.php:44
333
- #: includes/views/metaboxes/optional-form-settings.php:16
334
- #: includes/views/metaboxes/optional-form-settings.php:30
335
- #: includes/views/metaboxes/optional-form-settings.php:44
336
- #: includes/views/metaboxes/optional-form-settings.php:58
337
- #: includes/views/metaboxes/optional-form-settings.php:75
338
- #: includes/views/metaboxes/optional-form-settings.php:87
339
- #: includes/views/metaboxes/optional-form-settings.php:106
340
- #: includes/views/pages/admin-checkbox-settings.php:52
341
- #: includes/views/pages/admin-checkbox-settings.php:60
342
- #: includes/views/pages/admin-checkbox-settings.php:98
343
- #: includes/views/pages/admin-checkbox-settings.php:103
344
- #: includes/views/tabs/admin-forms-general-settings.php:58
345
- #: includes/views/tabs/admin-forms-general-settings.php:69
346
- #: includes/views/tabs/admin-forms-general-settings.php:79
347
- #: includes/views/tabs/admin-forms-general-settings.php:90
348
- #: includes/views/tabs/admin-forms-general-settings.php:104
349
- #: includes/views/tabs/admin-forms-general-settings.php:109
350
- #@ default
351
- msgid "Yes"
352
- msgstr ""
353
-
354
- #: includes/integrations/class-cf7.php:44
355
- #: includes/views/metaboxes/optional-form-settings.php:18
356
- #: includes/views/metaboxes/optional-form-settings.php:32
357
- #: includes/views/metaboxes/optional-form-settings.php:46
358
- #: includes/views/metaboxes/optional-form-settings.php:60
359
- #: includes/views/metaboxes/optional-form-settings.php:77
360
- #: includes/views/metaboxes/optional-form-settings.php:89
361
- #: includes/views/metaboxes/optional-form-settings.php:107
362
- #: includes/views/pages/admin-checkbox-settings.php:52
363
- #: includes/views/pages/admin-checkbox-settings.php:62
364
- #: includes/views/pages/admin-checkbox-settings.php:98
365
- #: includes/views/pages/admin-checkbox-settings.php:103
366
- #: includes/views/tabs/admin-forms-general-settings.php:22
367
- #: includes/views/tabs/admin-forms-general-settings.php:60
368
- #: includes/views/tabs/admin-forms-general-settings.php:71
369
- #: includes/views/tabs/admin-forms-general-settings.php:81
370
- #: includes/views/tabs/admin-forms-general-settings.php:92
371
- #: includes/views/tabs/admin-forms-general-settings.php:104
372
- #: includes/views/tabs/admin-forms-general-settings.php:109
373
- #@ default
374
- msgid "No"
375
- msgstr ""
376
-
377
- #: includes/library/license-manager/class-license-manager.php:171
378
- #, php-format
379
- #@ mailchimp-for-wp
380
- msgid "<b>Warning!</b> You're blocking external requests which means you won't be able to get %s updates. Please add %s to %s."
381
- msgstr "<b> Attenzione! </ b> Stai bloccando le richieste esterne, il che significa che non sarai in grado di ottenere gli aggiornamenti %s. Si prega di aggiungere %s in %s."
382
-
383
- #: includes/library/license-manager/class-license-manager.php:214
384
- #, php-format
385
- #@ mailchimp-for-wp
386
- msgid "Your %s license has been activated. You have an unlimited license. "
387
- msgstr "È stata attivata la tua licenza %s. Hai una licenza illimitata."
388
-
389
- #: includes/library/license-manager/class-license-manager.php:216
390
- #, php-format
391
- #@ mailchimp-for-wp
392
- msgid "Your %s license has been activated. You have used %d/%d activations. "
393
- msgstr "È stata attivata la tua licenza %s. È stato utilizzato %d/%d attivazioni."
394
-
395
- #: includes/library/license-manager/class-license-manager.php:221
396
- #, php-format
397
- #@ mailchimp-for-wp
398
- msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
399
- msgstr "<a href=\"%s\"> Lo sapevate che è possibile aggiornare la licenza? </a>"
400
-
401
- #: includes/library/license-manager/class-license-manager.php:225
402
- #, php-format
403
- #@ mailchimp-for-wp
404
- msgid "<a href=\"%s\">Your license is expiring in %d days, would you like to extend it?</a>"
405
- msgstr "<a href=\"%s\">La licenza è in scadenza in %d giorni, volete rinnovarla? </a>"
406
-
407
- #: includes/library/license-manager/class-license-manager.php:234
408
- #, php-format
409
- #@ mailchimp-for-wp
410
- msgid "You've reached your activation limit. You must <a href=\"%s\">upgrade your license</a> to use it on this site."
411
- msgstr "Hai raggiunto il limite di attivazione. È necessario <a href=\"%s\"> aggiornare la licenza </a> per usarlo su questo sito."
412
-
413
- #: includes/library/license-manager/class-license-manager.php:237
414
- #, php-format
415
- #@ mailchimp-for-wp
416
- msgid "Your license has expired. You must <a href=\"%s\">extend your license</a> in order to use it again."
417
- msgstr "La licenza è scaduta. È necessario <a href=\"%s\"> estendere la licenza </a> al fine di utilizzarlo di nuovo."
418
-
419
- #: includes/library/license-manager/class-license-manager.php:240
420
- #@ mailchimp-for-wp
421
- msgid "Failed to activate your license, your license key seems to be invalid."
422
- msgstr "Impossibile attivare la licenza, la chiave di licenza sembra non essere valida."
423
-
424
- #: includes/library/license-manager/class-license-manager.php:264
425
- #, php-format
426
- #@ mailchimp-for-wp
427
- msgid "Your %s license has been deactivated."
428
- msgstr "La vostra licenza %s non è attiva."
429
-
430
- #: includes/library/license-manager/class-license-manager.php:266
431
- #, php-format
432
- #@ mailchimp-for-wp
433
- msgid "Failed to deactivate your %s license."
434
- msgstr "Impossibile disattivare la licenza %s."
435
-
436
- #: includes/library/license-manager/class-license-manager.php:302
437
- #, php-format
438
- #@ mailchimp-for-wp
439
- msgid "Request error: \"%s\""
440
- msgstr "Richiesta di errore: \"%s\""
441
-
442
- #: includes/library/license-manager/class-license-manager.php:461
443
- #, php-format
444
- #@ mailchimp-for-wp
445
- msgid "%s: License Settings"
446
- msgstr "%s: Impostazioni licenza"
447
-
448
- #: includes/library/license-manager/class-plugin-license-manager.php:67
449
- #, php-format
450
- #@ mailchimp-for-wp
451
- msgid "%s is network activated, please contact your site administrator to manage the license."
452
- msgstr "%s la rete è attiva, contattare l'amministratore del sito per gestire la licenza."
453
-
454
- #: includes/library/license-manager/class-update-manager.php:69
455
- #, php-format
456
- #@ mailchimp-for-wp
457
- msgid "%s failed to check for updates because of the following error: <em>%s</em>"
458
- msgstr "%s non è riuscito a controllare gli aggiornamenti a causa del seguente errore: <em>%s</ em>"
459
-
460
- #: includes/library/license-manager/class-update-manager.php:138
461
- #@ mailchimp-for-wp
462
- msgid "This site has not been activated properly on dannyvankooten.com and thus cannot check for future updates. Please activate your site with a valid license key."
463
- msgstr "Questo sito non è stato attivato correttamente su dannyvankooten.com e quindi non in grado di controllare gli aggiornamenti futuri. Si prega di attivare il tuo sito con una chiave di licenza valida."
464
-
465
- #: includes/library/license-manager/views/form.php:23
466
- #@ mailchimp-for-wp
467
- msgid "License status"
468
- msgstr "Stato licenza"
469
-
470
- #: includes/library/license-manager/views/form.php:33
471
- #@ mailchimp-for-wp
472
- msgid "Toggle license status"
473
- msgstr "Toggle stato licenza"
474
-
475
- #: includes/library/license-manager/views/form.php:38
476
- #@ mailchimp-for-wp
477
- msgid "(deactivate your license so you can activate it on another WordPress site)"
478
- msgstr "(disattivare la licenza in modo da poterla attivare su un altro sito WordPress)"
479
-
480
- #: includes/library/license-manager/views/form.php:44
481
- #@ mailchimp-for-wp
482
- msgid "Please enter a license key in the field below first."
483
- msgstr "Prima inserisci una chiave di licenza nel campo sottostante."
484
-
485
- #: includes/library/license-manager/views/form.php:52
486
- #@ mailchimp-for-wp
487
- msgid "License Key"
488
- msgstr "Chiave Licenza"
489
-
490
- #: includes/library/license-manager/views/form.php:54
491
- #@ mailchimp-for-wp
492
- msgid "Paste your license key here, as found in the email receipt."
493
- msgstr ""
494
- "\n"
495
- "Incollare la chiave di licenza qui, come si trova nella ricevuta email."
496
-
497
- #: includes/library/license-manager/views/form.php:56
498
- #, php-format
499
- #@ mailchimp-for-wp
500
- msgid "You defined your license key using the %s PHP constant."
501
- msgstr "Definisci la tua chiave di licenza usando la %s costante PHP."
502
-
503
- #: includes/library/license-manager/views/form.php:73
504
- #, php-format
505
- #@ mailchimp-for-wp
506
- msgid "Your %s license will expire on %s."
507
- msgstr "La tua %s licenza scadrà il %s."
508
-
509
- #: includes/library/license-manager/views/form.php:76
510
- #, php-format
511
- #@ mailchimp-for-wp
512
- msgid "%sRenew your license now%s."
513
- msgstr "%sRinnova ora la tua licenza%s."
514
-
515
- #: includes/tables/class-forms-table.php:36
516
- #: includes/tables/class-log-table.php:207
517
- #: includes/tables/class-log-table.php:312
518
- #@ mailchimp-for-wp
519
- msgid "Form"
520
- msgstr "Modulo"
521
-
522
- #: includes/tables/class-forms-table.php:35
523
- #@ mailchimp-for-wp
524
- msgid "ID"
525
- msgstr ""
526
-
527
- #: includes/tables/class-forms-table.php:37
528
- #@ mailchimp-for-wp
529
- msgid "Shortcode"
530
- msgstr ""
531
-
532
- #: includes/tables/class-forms-table.php:38
533
- #@ mailchimp-for-wp
534
- msgid "List(s)"
535
- msgstr "Lista/e"
536
-
537
- #: includes/tables/class-forms-table.php:39
538
- #@ mailchimp-for-wp
539
- msgid "Last edited"
540
- msgstr "Ultima modifica"
541
-
542
- #: includes/tables/class-forms-table.php:76
543
- #: includes/tables/class-forms-table.php:80
544
- #@ mailchimp-for-wp
545
- msgid "Edit Form"
546
- msgstr "Modifica Modulo"
547
-
548
- #: includes/tables/class-forms-table.php:77
549
- #@ default
550
- msgid "Delete"
551
- msgstr ""
552
-
553
- #: includes/tables/class-forms-table.php:98
554
- #@ mailchimp-for-wp
555
- msgid "No MailChimp list(s) selected yet."
556
- msgstr "Nessuna lista\\e MailChimp ancora selezionata\\e."
557
-
558
- #: includes/tables/class-forms-table.php:105
559
- #@ mailchimp-for-wp
560
- msgid "You have not created any sign-up forms yet. Time to do so!"
561
- msgstr "Non hai ancora creato alcun modulo di iscrizione. È ora di farlo!"
562
-
563
- #: includes/tables/class-log-table.php:33
564
- #@ mailchimp-for-wp
565
- msgid "Subscriber"
566
- msgstr "Abbonato"
567
-
568
- #: includes/tables/class-log-table.php:34
569
- #@ mailchimp-for-wp
570
- msgid "Subscribers"
571
- msgstr "Abbonati"
572
-
573
- #: includes/tables/class-log-table.php:53
574
- #@ mailchimp-for-wp
575
- msgid "Email"
576
- msgstr "E-M@il"
577
-
578
- #: includes/tables/class-log-table.php:54
579
- #@ mailchimp-for-wp
580
- msgid "List"
581
- msgstr "Lista"
582
-
583
- #: includes/tables/class-log-table.php:55
584
- #@ mailchimp-for-wp
585
- msgid "Type"
586
- msgstr "Tipo"
587
-
588
- #: includes/tables/class-log-table.php:56
589
- #@ mailchimp-for-wp
590
- msgid "Source"
591
- msgstr "Origine"
592
-
593
- #: includes/tables/class-log-table.php:57
594
- #@ mailchimp-for-wp
595
- msgid "Extra data"
596
- msgstr "Dati Extra"
597
-
598
- #: includes/tables/class-log-table.php:58
599
- #@ mailchimp-for-wp
600
- msgid "Subscribed"
601
- msgstr "Iscritto"
602
-
603
- #: includes/tables/class-log-table.php:192
604
- #: includes/tables/class-log-table.php:196
605
- #@ mailchimp-for-wp
606
- msgid "Comment"
607
- msgstr "Commento"
608
-
609
- #: includes/tables/class-log-table.php:192
610
- #@ default
611
- msgid "deleted"
612
- msgstr ""
613
-
614
- #: includes/tables/class-log-table.php:200
615
- #@ mailchimp-for-wp
616
- msgid "Registration"
617
- msgstr "Registrazione"
618
-
619
- #: includes/tables/class-log-table.php:216
620
- #@ mailchimp-for-wp
621
- msgid "MultiSite registration"
622
- msgstr "Registrazione MultiSito"
623
-
624
- #: includes/tables/class-log-table.php:220
625
- #: includes/tables/class-log-table.php:224
626
- #@ mailchimp-for-wp
627
- msgid "Checkout"
628
- msgstr "Cassa"
629
-
630
- #: includes/tables/class-log-table.php:229
631
- #@ mailchimp-for-wp
632
- msgid "Contact Form 7"
633
- msgstr "Modulo Contatti 7"
634
-
635
- #: includes/tables/class-log-table.php:233
636
- #@ mailchimp-for-wp
637
- msgid "bbPress: New Topic"
638
- msgstr "bbPress: Nuovo argomento"
639
-
640
- #: includes/tables/class-log-table.php:237
641
- #@ mailchimp-for-wp
642
- msgid "bbPress: New Reply"
643
- msgstr "bbPress: Nuova risposta"
644
-
645
- #: includes/tables/class-log-table.php:243
646
- #@ mailchimp-for-wp
647
- msgid "Other Form"
648
- msgstr "Altro modulo"
649
-
650
- #: includes/tables/class-log-table.php:283
651
- #@ mailchimp-for-wp
652
- msgid "No subscribe requests found."
653
- msgstr "Richieste iscritti non trovate."
654
-
655
- #: includes/views/metaboxes/optional-form-settings.php:8
656
- #, php-format
657
- #@ mailchimp-for-wp
658
- msgid "Any settings you specify here will override the <a href=\"%s\">general form settings</a>. If no setting is specified, the corresponding general setting value will be used."
659
- msgstr "Le impostazioni specificate qui sostituiranno la <a href=\"%s\"> impostazioni generali del modulo </a>. Se non viene specificata alcuna impostazione, verrà utilizzato il corrispondente valore di impostazione standard."
660
-
661
- #: includes/views/metaboxes/optional-form-settings.php:10
662
- #@ mailchimp-for-wp
663
- msgid "MailChimp Settings"
664
- msgstr "Impostazioni MailChimp"
665
-
666
- #: includes/views/metaboxes/optional-form-settings.php:13
667
- #: includes/views/pages/admin-checkbox-settings.php:51
668
- #: includes/views/tabs/admin-forms-general-settings.php:55
669
- #@ mailchimp-for-wp
670
- msgid "Double opt-in?"
671
- msgstr "Doppia conferma?"
672
-
673
- #: includes/views/metaboxes/optional-form-settings.php:20
674
- #: includes/views/metaboxes/optional-form-settings.php:34
675
- #: includes/views/metaboxes/optional-form-settings.php:48
676
- #: includes/views/metaboxes/optional-form-settings.php:62
677
- #: includes/views/metaboxes/optional-form-settings.php:79
678
- #: includes/views/metaboxes/optional-form-settings.php:91
679
- #@ mailchimp-for-wp
680
- msgid "Inherit"
681
- msgstr "Ereditare"
682
-
683
- #: includes/views/metaboxes/optional-form-settings.php:22
684
- #: includes/views/pages/admin-checkbox-settings.php:53
685
- #: includes/views/tabs/admin-forms-general-settings.php:62
686
- #@ mailchimp-for-wp
687
- msgid "Select \"yes\" if you want people to confirm their email address before being subscribed (recommended)"
688
- msgstr "Selezionare \"si\" se si desidera che i clienti debbano confermare il loro indirizzo email, prima di essere iscritti (consigliato)."
689
-
690
- #: includes/views/metaboxes/optional-form-settings.php:27
691
- #: includes/views/tabs/admin-forms-general-settings.php:76
692
- #@ mailchimp-for-wp
693
- msgid "Update existing subscribers?"
694
- msgstr "Aggiornare iscritti esistenti?"
695
-
696
- #: includes/views/metaboxes/optional-form-settings.php:36
697
- #: includes/views/tabs/admin-forms-general-settings.php:83
698
- #@ mailchimp-for-wp
699
- msgid "Select \"yes\" if you want to update existing subscribers (instead of showing the \"already subscribed\" message)."
700
- msgstr "Selezionare \"si \" se si desidera aggiornare gli abbonati esistenti (invece di mostrare il messaggio \"già iscritto\")."
701
-
702
- #: includes/views/metaboxes/optional-form-settings.php:41
703
- #: includes/views/tabs/admin-forms-general-settings.php:87
704
- #@ mailchimp-for-wp
705
- msgid "Replace interest groups?"
706
- msgstr "Sostituire gruppi di interesse?"
707
-
708
- #: includes/views/metaboxes/optional-form-settings.php:50
709
- #: includes/views/tabs/admin-forms-general-settings.php:94
710
- #@ mailchimp-for-wp
711
- msgid "Select \"yes\" if you want to replace the interest groups with the groups provided instead of adding the provided groups to the member's interest groups (only when updating a subscriber)."
712
- msgstr "Selezionare \"si\" se si desidera sostituire i gruppi di interesse con i gruppi previsti invece di aggiungere i gruppi previsti per i gruppi di interesse del membro (solo quando si aggiorna un abbonato)."
713
-
714
- #: includes/views/metaboxes/optional-form-settings.php:55
715
- #: includes/views/pages/admin-checkbox-settings.php:57
716
- #: includes/views/tabs/admin-forms-general-settings.php:66
717
- #@ mailchimp-for-wp
718
- msgid "Send Welcome Email?"
719
- msgstr "Inviare mail di Benvenuto ?"
720
-
721
- #: includes/views/metaboxes/optional-form-settings.php:64
722
- #: includes/views/pages/admin-checkbox-settings.php:64
723
- #: includes/views/tabs/admin-forms-general-settings.php:73
724
- #@ mailchimp-for-wp
725
- msgid "Select \"yes\" if you want to send your lists Welcome Email if a subscribe succeeds (only when double opt-in is disabled)."
726
- msgstr "Selezionare \"si\" se si desidera inviare \\\"il Benvenuto\\\" alle vostre liste Email (solo se opzione doppia conferma è disabilitata)."
727
-
728
- #: includes/views/metaboxes/optional-form-settings.php:69
729
- #@ mailchimp-for-wp
730
- msgid "Form Settings & Messages"
731
- msgstr "Modulo Settaggi e Messaggi"
732
-
733
- #: includes/views/metaboxes/optional-form-settings.php:72
734
- #: includes/views/tabs/admin-forms-general-settings.php:103
735
- #@ mailchimp-for-wp
736
- msgid "Enable AJAX form submission?"
737
- msgstr "Abilitare il modulo di iscrizione AJAX ?"
738
-
739
- #: includes/views/metaboxes/optional-form-settings.php:80
740
- #: includes/views/tabs/admin-forms-general-settings.php:105
741
- #@ mailchimp-for-wp
742
- msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
743
- msgstr "Selezionare \"si\" se si desidera utilizzare AJAX (JavaScript) per inviare i moduli."
744
-
745
- #: includes/views/metaboxes/optional-form-settings.php:84
746
- #: includes/views/tabs/admin-forms-general-settings.php:108
747
- #@ mailchimp-for-wp
748
- msgid "Hide form after a successful sign-up?"
749
- msgstr "Nascondere il modulo dopo l'avvenuta iscrizione?"
750
-
751
- #: includes/views/metaboxes/optional-form-settings.php:93
752
- #: includes/views/tabs/admin-forms-general-settings.php:110
753
- #@ mailchimp-for-wp
754
- msgid "Select \"yes\" to hide the form fields after a successful sign-up."
755
- msgstr "Selezionare \"si\" per nascondere i campi del modulo dopo l'avvenuta iscrizione."
756
-
757
- #: includes/views/metaboxes/optional-form-settings.php:97
758
- #: includes/views/tabs/admin-forms-general-settings.php:113
759
- #@ mailchimp-for-wp
760
- msgid "Redirect to URL after successful sign-ups"
761
- msgstr "Redirect ad URL dopo iscrizione"
762
-
763
- #: includes/views/metaboxes/optional-form-settings.php:100
764
- #: includes/views/tabs/admin-forms-general-settings.php:116
765
- #@ mailchimp-for-wp
766
- msgid "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, including <code>http://</code>"
767
- msgstr "Lasciare vuoto o inserire 0 per nessun reindirizzamento. Utilizzare URL completi (assoluti), incluso <code>http://</code>"
768
-
769
- #: includes/views/metaboxes/optional-form-settings.php:104
770
- #@ mailchimp-for-wp
771
- msgid "Send an email copy of the form data?"
772
- msgstr "Invia una copia dell'email con i dati del modulo?"
773
-
774
- #: includes/views/metaboxes/optional-form-settings.php:108
775
- #@ mailchimp-for-wp
776
- msgid "Tick \"yes\" if you want to receive an email with the form data for every sign-up request."
777
- msgstr "Seleziona \"si\" se vuoi ricevere una mail con i dati del modulo per ogni richiesta d'iscrizione."
778
-
779
- #: includes/views/metaboxes/optional-form-settings.php:111
780
- #@ mailchimp-for-wp
781
- msgid "Send the copy to this email:"
782
- msgstr "Invia una copia a questa E-M@il:"
783
-
784
- #: includes/views/metaboxes/optional-form-settings.php:117
785
- #: includes/views/tabs/admin-forms-general-settings.php:119
786
- #@ mailchimp-for-wp
787
- msgid "Success message"
788
- msgstr "Messaggio di conferma"
789
-
790
- #: includes/views/metaboxes/optional-form-settings.php:121
791
- #: includes/views/tabs/admin-forms-general-settings.php:124
792
- #@ mailchimp-for-wp
793
- msgid "Invalid email address message"
794
- msgstr "Messagio ibdirizzo E-M@il non valido"
795
-
796
- #: includes/views/metaboxes/optional-form-settings.php:125
797
- #: includes/views/tabs/admin-forms-general-settings.php:128
798
- #@ mailchimp-for-wp
799
- msgid "Required field missing message"
800
- msgstr "Messaggio campi mancanti richiesti"
801
-
802
- #: includes/views/metaboxes/optional-form-settings.php:129
803
- #: includes/views/tabs/admin-forms-general-settings.php:132
804
- #@ mailchimp-for-wp
805
- msgid "Already subscribed message"
806
- msgstr "Messaggio gia' iscritto"
807
-
808
- #: includes/views/metaboxes/optional-form-settings.php:134
809
- #: includes/views/tabs/admin-forms-general-settings.php:138
810
- #@ mailchimp-for-wp
811
- msgid "Invalid CAPTCHA message"
812
- msgstr "Messaggio CAPTCHA non valido"
813
-
814
- #: includes/views/metaboxes/optional-form-settings.php:139
815
- #: includes/views/tabs/admin-forms-general-settings.php:143
816
- #@ mailchimp-for-wp
817
- msgid "General error message"
818
- msgstr "Messaggio errore generale"
819
-
820
- #: includes/views/metaboxes/optional-form-settings.php:145
821
- #: includes/views/tabs/admin-forms-general-settings.php:148
822
- #, php-format
823
- #@ mailchimp-for-wp
824
- msgid "HTML tags like %s are allowed in the message fields."
825
- msgstr "I tag HTML come %s sono ammessi nel campo messaggio."
826
-
827
- #: includes/views/metaboxes/required-form-settings.php:14
828
- #@ mailchimp-for-wp
829
- msgid "Lists this form subscribes to"
830
- msgstr "Elenca questo modulo agli iscritti a"
831
-
832
- #: includes/views/metaboxes/required-form-settings.php:17
833
- #: includes/views/pages/admin-checkbox-settings.php:38
834
- #, php-format
835
- #@ mailchimp-for-wp
836
- msgid "No lists found, %sare you connected to MailChimp?%s"
837
- msgstr "Nessun elenco trovato, %ssei connesso a MailChimp?%s"
838
-
839
- #: includes/views/metaboxes/required-form-settings.php:29
840
- #@ mailchimp-for-wp
841
- msgid "Add a new field"
842
- msgstr "Aggiungi un nuovo campo"
843
-
844
- #: includes/views/metaboxes/required-form-settings.php:32
845
- #@ mailchimp-for-wp
846
- msgid "Select MailChimp field.."
847
- msgstr "Seleziona i campi MailChimp.."
848
-
849
- #: includes/views/metaboxes/required-form-settings.php:36
850
- #@ mailchimp-for-wp
851
- msgid "Submit Button"
852
- msgstr "Pulsante Invio"
853
-
854
- #: includes/views/metaboxes/required-form-settings.php:37
855
- #@ mailchimp-for-wp
856
- msgid "Lists Choice"
857
- msgstr "Lista scelte"
858
-
859
- #: includes/views/metaboxes/required-form-settings.php:45
860
- #@ mailchimp-for-wp
861
- msgid "Label"
862
- msgstr "Etichetta"
863
-
864
- #: includes/views/metaboxes/required-form-settings.php:45
865
- #: includes/views/metaboxes/required-form-settings.php:50
866
- #: includes/views/metaboxes/required-form-settings.php:55
867
- #@ mailchimp-for-wp
868
- msgid "(optional)"
869
- msgstr "(opzionale)"
870
-
871
- #: includes/views/metaboxes/required-form-settings.php:50
872
- #@ mailchimp-for-wp
873
- msgid "Placeholder"
874
- msgstr "Segnaposto"
875
-
876
- #: includes/views/metaboxes/required-form-settings.php:55
877
- #@ mailchimp-for-wp
878
- msgid "Initial value"
879
- msgstr "Valore iniziale"
880
-
881
- #: includes/views/metaboxes/required-form-settings.php:60
882
- #@ mailchimp-for-wp
883
- msgid "Labels"
884
- msgstr "Etichette"
885
-
886
- #: includes/views/metaboxes/required-form-settings.php:60
887
- #@ mailchimp-for-wp
888
- msgid "(leave empty to hide)"
889
- msgstr "(lascia vuoto per nascondere)"
890
-
891
- #: includes/views/metaboxes/required-form-settings.php:65
892
- #, php-format
893
- #@ mailchimp-for-wp
894
- msgid "Wrap in paragraph %s tags?"
895
- msgstr "Inserisce nel paragrafo %s tags?"
896
-
897
- #: includes/views/metaboxes/required-form-settings.php:69
898
- #@ mailchimp-for-wp
899
- msgid "Required field?"
900
- msgstr "Campi obbligatori?"
901
-
902
- #: includes/views/metaboxes/required-form-settings.php:73
903
- #@ mailchimp-for-wp
904
- msgid "Add to form"
905
- msgstr "Aggiungi al modulo"
906
-
907
- #: includes/views/metaboxes/required-form-settings.php:77
908
- #@ mailchimp-for-wp
909
- msgid "Generated HTML"
910
- msgstr "Generato HTML"
911
-
912
- #: includes/views/metaboxes/required-form-settings.php:86
913
- #@ mailchimp-for-wp
914
- msgid "Form usage"
915
- msgstr "Utilizza modulo"
916
-
917
- #: includes/views/metaboxes/required-form-settings.php:87
918
- #, php-format
919
- #@ mailchimp-for-wp
920
- msgid "Use the shortcode %s to display this form inside a post, page or text widget."
921
- msgstr "Utilizzare lo shortcode %s per visualizzare questo form all'interno di un post, pagina o il testo del widget."
922
-
923
- #: includes/views/pages/admin-checkbox-settings.php:11
924
- #: includes/views/pages/admin-form-settings.php:10
925
- #: includes/views/pages/admin-general-settings.php:10
926
- #: includes/views/pages/admin-reports.php:10
927
- #@ mailchimp-for-wp
928
- msgid "MailChimp for WordPress"
929
- msgstr "MailChimp per Wordpress"
930
-
931
- #: includes/views/pages/admin-checkbox-settings.php:11
932
- #@ mailchimp-for-wp
933
- msgid "Checkbox Settings"
934
- msgstr "Impostazioni Checkbox"
935
-
936
- #: includes/views/pages/admin-checkbox-settings.php:14
937
- #@ mailchimp-for-wp
938
- msgid "To use sign-up checkboxes, select at least one list and one form to add the checkbox to."
939
- msgstr "Per abilitare l'iscrizione, selezionare almeno una lista e un modulo per aggiungere l'opzione."
940
-
941
- #: includes/views/pages/admin-checkbox-settings.php:21
942
- #@ mailchimp-for-wp
943
- msgid "MailChimp settings for checkboxes"
944
- msgstr "Impostazioni MailChimp per le checkboxes"
945
-
946
- #: includes/views/pages/admin-checkbox-settings.php:26
947
- #@ mailchimp-for-wp
948
- msgid "If you want to use sign-up checkboxes, select at least one MailChimp list to subscribe people to."
949
- msgstr "Se si desidera utilizzare l'opzione di iscrizione, selezionare almeno una lista MailChimp per l'iscrizione delle persone."
950
-
951
- #: includes/views/pages/admin-checkbox-settings.php:34
952
- #@ mailchimp-for-wp
953
- msgid "MailChimp Lists"
954
- msgstr "Liste MailChimp"
955
-
956
- #: includes/views/pages/admin-checkbox-settings.php:45
957
- #@ mailchimp-for-wp
958
- msgid "Select the list(s) to which people who check the checkbox should be subscribed."
959
- msgstr "Selezionare gli elenchi a cui le persone che selezionano la checkbox devono essere iscritte."
960
-
961
- #: includes/views/pages/admin-checkbox-settings.php:68
962
- #@ mailchimp-for-wp
963
- msgid "Checkbox settings"
964
- msgstr "Impostazioni Checkbox"
965
-
966
- #: includes/views/pages/admin-checkbox-settings.php:71
967
- #@ mailchimp-for-wp
968
- msgid "Add the checkbox to these forms"
969
- msgstr "Aggiungi la checkbox a questi moduli"
970
-
971
- #: includes/views/pages/admin-checkbox-settings.php:78
972
- #@ mailchimp-for-wp
973
- msgid "Selecting a form will automatically add the sign-up checkbox to it."
974
- msgstr "Selezionare il modulo dove si aggiungerà automaticamente la checkbox di iscrizione."
975
-
976
- #: includes/views/pages/admin-checkbox-settings.php:85
977
- #, php-format
978
- #@ mailchimp-for-wp
979
- msgid "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 forms.</p>"
980
- msgstr "Usa %s nel tuo Modulo Contatti 7 per aggiungere una l'opzione d'iscrizione al MC7</p>"
981
-
982
- #: includes/views/pages/admin-checkbox-settings.php:90
983
- #@ mailchimp-for-wp
984
- msgid "Checkbox label text"
985
- msgstr "Etichetta di testo della Checkbox"
986
-
987
- #: includes/views/pages/admin-checkbox-settings.php:93
988
- #: includes/views/pages/admin-checkbox-settings.php:123
989
- #, php-format
990
- #@ mailchimp-for-wp
991
- msgid "HTML tags like %s are allowed in the label text."
992
- msgstr "I tag HTML come %s sono ammessi nel testo dell'etichetta."
993
-
994
- #: includes/views/pages/admin-checkbox-settings.php:97
995
- #@ mailchimp-for-wp
996
- msgid "Pre-check the checkbox?"
997
- msgstr "Pre-selezionare l'iscrizione?"
998
-
999
- #: includes/views/pages/admin-checkbox-settings.php:102
1000
- #@ mailchimp-for-wp
1001
- msgid "Load some default CSS?"
1002
- msgstr "Caricare i file CSS di default?"
1003
-
1004
- #: includes/views/pages/admin-checkbox-settings.php:104
1005
- #@ mailchimp-for-wp
1006
- msgid "Select \"yes\" if the checkbox appears in a weird place."
1007
- msgstr "Selezionare \"si\" se la casella di controllo deve apparire in un posto bizzarro."
1008
-
1009
- #: includes/views/pages/admin-checkbox-settings.php:108
1010
- #: includes/views/pages/admin-checkbox-settings.php:128
1011
- #: includes/views/tabs/admin-forms-general-settings.php:48
1012
- #: includes/views/tabs/admin-forms-general-settings.php:152
1013
- #@ default
1014
- msgid "Save all changes"
1015
- msgstr "Salva le modifiche"
1016
-
1017
- #: includes/views/pages/admin-checkbox-settings.php:111
1018
- #@ mailchimp-for-wp
1019
- msgid "Custom label texts"
1020
- msgstr "Etichetta personalizzata"
1021
-
1022
- #: includes/views/pages/admin-checkbox-settings.php:112
1023
- #@ mailchimp-for-wp
1024
- msgid "Override the default checkbox label text for any given checkbox using the fields below."
1025
- msgstr "Sostituisci il testo dell'etichetta della checkbox di default per ogni checkboxutilizzando i campi sottostanti."
1026
-
1027
- #: includes/views/pages/admin-form-settings.php:13
1028
- #@ mailchimp-for-wp
1029
- msgid "Forms & Settings"
1030
- msgstr "Moduli & Settaggi"
1031
-
1032
- #: includes/views/pages/admin-form-settings.php:14
1033
- #@ mailchimp-for-wp
1034
- msgid "CSS Styles Builder"
1035
- msgstr "Creare stili CSS"
1036
-
1037
- #: includes/views/pages/admin-general-settings.php:10
1038
- #@ mailchimp-for-wp
1039
- msgid "License & API Settings"
1040
- msgstr "Licenze & Settaggi API"
1041
-
1042
- #: includes/views/pages/admin-general-settings.php:19
1043
- #@ mailchimp-for-wp
1044
- msgid "API Settings"
1045
- msgstr "Settaggi API"
1046
-
1047
- #: includes/views/pages/admin-general-settings.php:21
1048
- #@ mailchimp-for-wp
1049
- msgid "CONNECTED"
1050
- msgstr "CONNESSO"
1051
-
1052
- #: includes/views/pages/admin-general-settings.php:23
1053
- #@ mailchimp-for-wp
1054
- msgid "NOT CONNECTED"
1055
- msgstr "DISCONNESSO"
1056
-
1057
- #: includes/views/pages/admin-general-settings.php:29
1058
- #@ mailchimp-for-wp
1059
- msgid "API Key"
1060
- msgstr "Chiave API"
1061
-
1062
- #: includes/views/pages/admin-general-settings.php:31
1063
- #@ mailchimp-for-wp
1064
- msgid "Your MailChimp API key"
1065
- msgstr "La tua chaive API MailChimp"
1066
-
1067
- #: includes/views/pages/admin-general-settings.php:32
1068
- #@ mailchimp-for-wp
1069
- msgid "Get your API key here."
1070
- msgstr "Ottieni la tua chiave API qui."
1071
-
1072
- #: includes/views/pages/admin-general-settings.php:48
1073
- #@ mailchimp-for-wp
1074
- msgid "MailChimp Data"
1075
- msgstr "Dati MailChimp"
1076
-
1077
- #: includes/views/pages/admin-general-settings.php:49
1078
- #@ mailchimp-for-wp
1079
- msgid "The table below shows your MailChimp lists data. If you applied changes to your MailChimp lists, please use the following button to renew your cached data."
1080
- msgstr "La seguente tabella mostra i vostri elenchi in MailChimp. Se applicate le modifichealle vostre liste MailChimp, si prega di utilizzare il seguente pulsante perrinnovare la vostra cache."
1081
-
1082
- #: includes/views/pages/admin-general-settings.php:55
1083
- #: includes/views/pages/admin-general-settings.php:126
1084
- #@ mailchimp-for-wp
1085
- msgid "Renew MailChimp lists"
1086
- msgstr "Aggiorna liste MailChimp"
1087
-
1088
- #: includes/views/pages/admin-general-settings.php:113
1089
- #@ mailchimp-for-wp
1090
- msgid "No lists were found in your MailChimp account."
1091
- msgstr "Nessuna lista trovata nel tuo account MailChimp"
1092
-
1093
- #: includes/views/pages/admin-reports.php:14
1094
- #@ mailchimp-for-wp
1095
- msgid "Statistics"
1096
- msgstr "Statistiche"
1097
-
1098
- #: includes/views/pages/admin-reports.php:15
1099
- #@ mailchimp-for-wp
1100
- msgid "Log"
1101
- msgstr ""
1102
-
1103
- #: includes/views/parts/admin-footer.php:9
1104
- #, php-format
1105
- #@ mailchimp-for-wp
1106
- msgid "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or email me directly at <a href=\"%s\">support@dannyvankooten.com</a>."
1107
- msgstr "Hai bisogno di aiuto? Dai un'occhiata alla <a href=\"%s\">documentazione</a> o contattami via E-M@il <a href=\"%s\">support@dannyvankooten.com</a>."
1108
-
1109
- #: includes/views/parts/admin-text-variables.php:13
1110
- #@ mailchimp-for-wp
1111
- msgid "Replaced with the form response (error or success messages)."
1112
- msgstr "Sostituite con il Modulo di Risposta (messaggi di errore o di successo)."
1113
-
1114
- #: includes/views/parts/admin-text-variables.php:18
1115
- #@ mailchimp-for-wp
1116
- msgid "Replaced with a captcha field."
1117
- msgstr "Sostituite con il campo captcha."
1118
-
1119
- #: includes/views/parts/admin-text-variables.php:23
1120
- #@ mailchimp-for-wp
1121
- msgid "Replaced with the number of subscribers on the selected list(s)"
1122
- msgstr "Sostituite con il numero di abbonati della lista/liste selezionata/e"
1123
-
1124
- #: includes/views/parts/admin-text-variables.php:27
1125
- #, php-format
1126
- #@ mailchimp-for-wp
1127
- msgid "Replaced with the current site language, eg: %s"
1128
- msgstr "Sostituite con la lingua corrente del sito, eg: %s"
1129
-
1130
- #: includes/views/parts/admin-text-variables.php:31
1131
- #@ mailchimp-for-wp
1132
- msgid "Replaced with the visitor's IP address"
1133
- msgstr "Sostituite con 'indirizzo IP del visitatore"
1134
-
1135
- #: includes/views/parts/admin-text-variables.php:35
1136
- #, php-format
1137
- #@ mailchimp-for-wp
1138
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
1139
- msgstr "Sostituite con la data corrente (yyyy/mm/dd eg: %s)"
1140
-
1141
- #: includes/views/parts/admin-text-variables.php:39
1142
- #, php-format
1143
- #@ mailchimp-for-wp
1144
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
1145
- msgstr "Sostituite con l'ora corrente (hh:mm:ss eg: %s)"
1146
-
1147
- #: includes/views/parts/admin-text-variables.php:43
1148
- #@ mailchimp-for-wp
1149
- msgid "Replaced with the logged in user's email (or nothing, if there is no logged in user)"
1150
- msgstr "Sostituite con l'E-M@il dell'utente (o niente, se non vi è alcun utente collegato)"
1151
-
1152
- #: includes/views/parts/admin-text-variables.php:47
1153
- #@ mailchimp-for-wp
1154
- msgid "First name of the current user"
1155
- msgstr "Nome dell'utente corrente"
1156
-
1157
- #: includes/views/parts/admin-text-variables.php:51
1158
- #@ mailchimp-for-wp
1159
- msgid "Last name of the current user"
1160
- msgstr "Cognome dell'utente corrente"
1161
-
1162
- #: includes/views/parts/admin-text-variables.php:55
1163
- #@ mailchimp-for-wp
1164
- msgid "Current user ID"
1165
- msgstr "Username Corrente"
1166
-
1167
- #: includes/views/parts/admin-text-variables.php:59
1168
- #@ mailchimp-for-wp
1169
- msgid "Current URL"
1170
- msgstr "URL Corrente"
1171
-
1172
- #: includes/views/tabs/admin-forms-css-builder.php:10
1173
- #@ mailchimp-for-wp
1174
- msgid "Use the fields below to create custom styling rules for your forms."
1175
- msgstr "Utilizzare i campi qui sotto per creare regole di stile personalizzato per i vostri moduli."
1176
-
1177
- #: includes/views/tabs/admin-forms-css-builder.php:214
1178
- #@ mailchimp-for-wp
1179
- msgid "Build CSS File"
1180
- msgstr "Crea il file CSS"
1181
-
1182
- #: includes/views/tabs/admin-forms-css-builder.php:230
1183
- #, php-format
1184
- #@ mailchimp-for-wp
1185
- msgid "Please <a href=\"%s\">create at least 1 form</a> first."
1186
- msgstr "Perfavore <a href=\"%s\">crea almeno un modulo</a> prima."
1187
-
1188
- #: includes/views/tabs/admin-forms-css-builder.php:232
1189
- #@ mailchimp-for-wp
1190
- msgid "Select form for preview"
1191
- msgstr "Selezionare il modulo per l'anteprima"
1192
-
1193
- #: includes/views/tabs/admin-forms-general-settings.php:8
1194
- #@ mailchimp-for-wp
1195
- msgid "Sign-Up Forms"
1196
- msgstr "Moduli iscrizione"
1197
-
1198
- #: includes/views/tabs/admin-forms-general-settings.php:8
1199
- #@ mailchimp-for-wp
1200
- msgid "Create New Form"
1201
- msgstr "Crea nuovo modulo"
1202
-
1203
- #: includes/views/tabs/admin-forms-general-settings.php:16
1204
- #@ mailchimp-for-wp
1205
- msgid "General form settings"
1206
- msgstr "Modulo impostazioni generali"
1207
-
1208
- #: includes/views/tabs/admin-forms-general-settings.php:19
1209
- #@ mailchimp-for-wp
1210
- msgid "Load form styles (CSS)?"
1211
- msgstr "Caricare stili dei moduli (CSS)?"
1212
-
1213
- #: includes/views/tabs/admin-forms-general-settings.php:23
1214
- #@ mailchimp-for-wp
1215
- msgid "Yes, load basic form styles"
1216
- msgstr "Si, carica il foglio di stile di base"
1217
-
1218
- #: includes/views/tabs/admin-forms-general-settings.php:24
1219
- #@ mailchimp-for-wp
1220
- msgid "Yes, load my custom form styles"
1221
- msgstr "Si, carica il foglio di stile personalizzato"
1222
-
1223
- #: includes/views/tabs/admin-forms-general-settings.php:25
1224
- #@ mailchimp-for-wp
1225
- msgid "Yes, load default form theme"
1226
- msgstr "Si, carica il modulo con il tema stardard"
1227
-
1228
- #: includes/views/tabs/admin-forms-general-settings.php:26
1229
- #@ mailchimp-for-wp
1230
- msgid "Light Theme"
1231
- msgstr "Tema Chiaro"
1232
-
1233
- #: includes/views/tabs/admin-forms-general-settings.php:27
1234
- #@ mailchimp-for-wp
1235
- msgid "Red Theme"
1236
- msgstr "Tema Rosso"
1237
-
1238
- #: includes/views/tabs/admin-forms-general-settings.php:28
1239
- #@ mailchimp-for-wp
1240
- msgid "Green Theme"
1241
- msgstr "Tema Verde"
1242
-
1243
- #: includes/views/tabs/admin-forms-general-settings.php:29
1244
- #@ mailchimp-for-wp
1245
- msgid "Blue Theme"
1246
- msgstr "Tema Blu"
1247
-
1248
- #: includes/views/tabs/admin-forms-general-settings.php:30
1249
- #@ mailchimp-for-wp
1250
- msgid "Dark Theme"
1251
- msgstr "Tema Scuro"
1252
-
1253
- #: includes/views/tabs/admin-forms-general-settings.php:31
1254
- #@ mailchimp-for-wp
1255
- msgid "Custom Color Theme"
1256
- msgstr "Colore tema personalizzato"
1257
-
1258
- #: includes/views/tabs/admin-forms-general-settings.php:36
1259
- #, php-format
1260
- #@ mailchimp-for-wp
1261
- msgid "If you %screated a custom stylesheet%s and want it to be loaded, select \"custom form styles\". Otherwise, choose the basic formatting styles or one of the default themes."
1262
- msgstr "Se e' stato %screato un foglio di stile personalizzato%s e si vuole che sia caricato,selezionare \"modulo stili personalizzato\". Altrimenti, scegliere uno stile di base o di uno dei temi di default."
1263
-
1264
- #: includes/views/tabs/admin-forms-general-settings.php:40
1265
- #@ mailchimp-for-wp
1266
- msgid "Select Color"
1267
- msgstr "Seleziona il colore"
1268
-
1269
- #: includes/views/tabs/admin-forms-general-settings.php:50
1270
- #@ mailchimp-for-wp
1271
- msgid "Default MailChimp settings"
1272
- msgstr "Impostazioni MailChimp iniziali"
1273
-
1274
- #: includes/views/tabs/admin-forms-general-settings.php:51
1275
- #: includes/views/tabs/admin-forms-general-settings.php:99
1276
- #@ mailchimp-for-wp
1277
- msgid "The following settings apply to <strong>all</strong> forms but can be overridden on a per-form basis."
1278
- msgstr "Le seguenti impostazioni si applicano a <strong> tutti </ strong> i moduli,ma possono essere sovrascritte su un modulo base."
1279
-
1280
- #: includes/views/tabs/admin-forms-general-settings.php:98
1281
- #@ mailchimp-for-wp
1282
- msgid "Default form settings"
1283
- msgstr "Modulo impostazioni iniziali"
1284
-
1285
- #: includes/integrations/class-integration.php:83
1286
- #@ default
1287
- msgid "label"
1288
- msgstr ""
1289
-
1290
- #: includes/library/license-manager/class-license-manager.php:152
1291
- #@ mailchimp-for-wp
1292
- msgid "I know. Don't bug me."
1293
- msgstr "Lo so."
1294
-
1295
- #: includes/library/license-manager/views/form.php:37
1296
- #@ mailchimp-for-wp
1297
- msgid "Deactivate License"
1298
- msgstr "Disattivare Licenza"
1299
-
1300
- #: includes/library/license-manager/views/form.php:42
1301
- #@ mailchimp-for-wp
1302
- msgid "Activate License"
1303
- msgstr "Attivare Licenza"
1304
-
1305
- #: includes/tables/class-log-table.php:306
1306
- #@ mailchimp-for-wp
1307
- msgid "All"
1308
- msgstr "Tutto"
1309
-
1310
- #: includes/tables/class-log-table.php:318
1311
- #@ mailchimp-for-wp
1312
- msgid "Checkbox"
1313
- msgstr ""
1314
-
1
+ # Translation of MailChimp for WordPress in Italian
2
+ # This file is distributed under the same license as the MailChimp for WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-09-12 15:44:29+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: MailChimp for WordPress\n"
12
+
13
+ #: includes/library/license-manager/views/form.php:73
14
+ msgid "Your %s license will expire on %s."
15
+ msgstr "La tua %s licenza scadrà il %s."
16
+
17
+ #: includes/library/license-manager/views/form.php:76
18
+ msgid "%sRenew your license now%s."
19
+ msgstr "%sRinnova ora la tua licenza%s."
20
+
21
+ #: includes/tables/class-forms-table.php:35
22
+ msgid "ID"
23
+ msgstr "ID"
24
+
25
+ #: includes/tables/class-forms-table.php:36
26
+ #: includes/tables/class-log-table.php:207
27
+ #: includes/tables/class-log-table.php:312
28
+ msgid "Form"
29
+ msgstr "Modulo"
30
+
31
+ #: includes/tables/class-forms-table.php:37
32
+ msgid "Shortcode"
33
+ msgstr ""
34
+
35
+ #: includes/tables/class-forms-table.php:38
36
+ msgid "List(s)"
37
+ msgstr "Lista/e"
38
+
39
+ #: includes/tables/class-forms-table.php:39
40
+ msgid "Last edited"
41
+ msgstr "Ultima modifica"
42
+
43
+ #: includes/tables/class-forms-table.php:76
44
+ #: includes/tables/class-forms-table.php:80
45
+ msgid "Edit Form"
46
+ msgstr "Modifica Modulo"
47
+
48
+ #: includes/tables/class-forms-table.php:77
49
+ msgid "Delete"
50
+ msgstr "Cancella"
51
+
52
+ #: includes/tables/class-forms-table.php:98
53
+ msgid "No MailChimp list(s) selected yet."
54
+ msgstr "Nessuna lista\\e MailChimp ancora selezionata\\e."
55
+
56
+ #: includes/tables/class-forms-table.php:105
57
+ msgid "You have not created any sign-up forms yet. Time to do so!"
58
+ msgstr "Non hai ancora creato alcun modulo di iscrizione. È ora di farlo!"
59
+
60
+ #: includes/tables/class-log-table.php:33
61
+ msgid "Subscriber"
62
+ msgstr "Abbonato"
63
+
64
+ #: includes/tables/class-log-table.php:34
65
+ msgid "Subscribers"
66
+ msgstr "Abbonati"
67
+
68
+ #: includes/tables/class-log-table.php:53
69
+ msgid "Email"
70
+ msgstr "E-M@il"
71
+
72
+ #: includes/tables/class-log-table.php:54
73
+ msgid "List"
74
+ msgstr "Lista"
75
+
76
+ #: includes/tables/class-log-table.php:55
77
+ msgid "Type"
78
+ msgstr "Tipo"
79
+
80
+ #: includes/tables/class-log-table.php:56
81
+ msgid "Source"
82
+ msgstr "Origine"
83
+
84
+ #: includes/tables/class-log-table.php:57
85
+ msgid "Extra data"
86
+ msgstr "Dati Extra"
87
+
88
+ #: includes/tables/class-log-table.php:58
89
+ msgid "Subscribed"
90
+ msgstr "Iscritto"
91
+
92
+ #: includes/tables/class-log-table.php:192
93
+ #: includes/tables/class-log-table.php:196
94
+ msgid "Comment"
95
+ msgstr "Commento"
96
+
97
+ #: includes/tables/class-log-table.php:192
98
+ msgid "deleted"
99
+ msgstr "cancellato"
100
+
101
+ #: includes/tables/class-log-table.php:200
102
+ msgid "Registration"
103
+ msgstr "Registrazione"
104
+
105
+ #: includes/tables/class-log-table.php:216
106
+ msgid "MultiSite registration"
107
+ msgstr "Registrazione MultiSito"
108
+
109
+ #: includes/tables/class-log-table.php:220
110
+ #: includes/tables/class-log-table.php:224
111
+ msgid "Checkout"
112
+ msgstr "Cassa"
113
+
114
+ #: includes/tables/class-log-table.php:229
115
+ msgid "Contact Form 7"
116
+ msgstr "Modulo Contatti 7"
117
+
118
+ #: includes/tables/class-log-table.php:233
119
+ msgid "bbPress: New Topic"
120
+ msgstr "bbPress: Nuovo argomento"
121
+
122
+ #: includes/tables/class-log-table.php:237
123
+ msgid "bbPress: New Reply"
124
+ msgstr "bbPress: Nuova risposta"
125
+
126
+ #: includes/tables/class-log-table.php:243
127
+ msgid "Other Form"
128
+ msgstr "Altro modulo"
129
+
130
+ #: includes/tables/class-log-table.php:283
131
+ msgid "No subscribe requests found."
132
+ msgstr "Richieste iscritti non trovate."
133
+
134
+ #: includes/tables/class-log-table.php:306
135
+ msgid "All"
136
+ msgstr "Tutto"
137
+
138
+ #: includes/tables/class-log-table.php:318
139
+ msgid "Checkbox"
140
+ msgstr "Controllo a selezione multipla"
141
+
142
+ #: includes/views/metaboxes/optional-form-settings.php:8
143
+ msgid "Any settings you specify here will override the <a href=\"%s\">general form settings</a>. If no setting is specified, the corresponding general setting value will be used."
144
+ msgstr "Le impostazioni specificate qui sostituiranno la <a href=\"%s\"> impostazioni generali del modulo </a>. Se non viene specificata alcuna impostazione, verrà utilizzato il corrispondente valore di impostazione standard."
145
+
146
+ #: includes/views/metaboxes/optional-form-settings.php:10
147
+ msgid "MailChimp Settings"
148
+ msgstr "Impostazioni MailChimp"
149
+
150
+ #: includes/views/metaboxes/optional-form-settings.php:13
151
+ #: includes/views/pages/admin-checkbox-settings.php:51
152
+ #: includes/views/tabs/admin-forms-general-settings.php:55
153
+ msgid "Double opt-in?"
154
+ msgstr "Doppia conferma?"
155
+
156
+ #: includes/views/metaboxes/optional-form-settings.php:20
157
+ #: includes/views/metaboxes/optional-form-settings.php:34
158
+ #: includes/views/metaboxes/optional-form-settings.php:48
159
+ #: includes/views/metaboxes/optional-form-settings.php:62
160
+ #: includes/views/metaboxes/optional-form-settings.php:79
161
+ #: includes/views/metaboxes/optional-form-settings.php:91
162
+ msgid "Inherit"
163
+ msgstr "Ereditare"
164
+
165
+ #: includes/views/metaboxes/optional-form-settings.php:22
166
+ #: includes/views/pages/admin-checkbox-settings.php:53
167
+ #: includes/views/tabs/admin-forms-general-settings.php:62
168
+ msgid "Select \"yes\" if you want people to confirm their email address before being subscribed (recommended)"
169
+ msgstr "Selezionare \"si\" se si desidera che i clienti debbano confermare il loro indirizzo email, prima di essere iscritti (consigliato)."
170
+
171
+ #: includes/views/metaboxes/optional-form-settings.php:27
172
+ #: includes/views/tabs/admin-forms-general-settings.php:76
173
+ msgid "Update existing subscribers?"
174
+ msgstr "Aggiornare iscritti esistenti?"
175
+
176
+ #: includes/views/metaboxes/optional-form-settings.php:36
177
+ #: includes/views/tabs/admin-forms-general-settings.php:83
178
+ msgid "Select \"yes\" if you want to update existing subscribers (instead of showing the \"already subscribed\" message)."
179
+ msgstr "Selezionare \"si \" se si desidera aggiornare gli abbonati esistenti (invece di mostrare il messaggio \"già iscritto\")."
180
+
181
+ #: includes/views/metaboxes/optional-form-settings.php:41
182
+ #: includes/views/tabs/admin-forms-general-settings.php:87
183
+ msgid "Replace interest groups?"
184
+ msgstr "Sostituire gruppi di interesse?"
185
+
186
+ #: includes/views/metaboxes/optional-form-settings.php:50
187
+ #: includes/views/tabs/admin-forms-general-settings.php:94
188
+ msgid "Select \"yes\" if you want to replace the interest groups with the groups provided instead of adding the provided groups to the member's interest groups (only when updating a subscriber)."
189
+ msgstr "Selezionare \"si\" se si desidera sostituire i gruppi di interesse con i gruppi previsti invece di aggiungere i gruppi previsti per i gruppi di interesse del membro (solo quando si aggiorna un abbonato)."
190
+
191
+ #: includes/views/metaboxes/optional-form-settings.php:55
192
+ #: includes/views/pages/admin-checkbox-settings.php:57
193
+ #: includes/views/tabs/admin-forms-general-settings.php:66
194
+ msgid "Send Welcome Email?"
195
+ msgstr "Inviare mail di Benvenuto ?"
196
+
197
+ #: includes/views/metaboxes/optional-form-settings.php:64
198
+ #: includes/views/pages/admin-checkbox-settings.php:64
199
+ #: includes/views/tabs/admin-forms-general-settings.php:73
200
+ msgid "Select \"yes\" if you want to send your lists Welcome Email if a subscribe succeeds (only when double opt-in is disabled)."
201
+ msgstr "Selezionare \"si\" se si desidera inviare \\\"il Benvenuto\\\" alle vostre liste Email (solo se opzione doppia conferma è disabilitata)."
202
+
203
+ #: includes/views/metaboxes/optional-form-settings.php:72
204
+ #: includes/views/tabs/admin-forms-general-settings.php:103
205
+ msgid "Enable AJAX form submission?"
206
+ msgstr "Abilitare il modulo di iscrizione AJAX ?"
207
+
208
+ #: includes/views/metaboxes/optional-form-settings.php:80
209
+ #: includes/views/tabs/admin-forms-general-settings.php:105
210
+ msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
211
+ msgstr "Selezionare \"si\" se si desidera utilizzare AJAX (JavaScript) per inviare i moduli."
212
+
213
+ #: includes/views/metaboxes/optional-form-settings.php:84
214
+ #: includes/views/tabs/admin-forms-general-settings.php:108
215
+ msgid "Hide form after a successful sign-up?"
216
+ msgstr "Nascondere il modulo dopo l'avvenuta iscrizione?"
217
+
218
+ #: includes/views/metaboxes/optional-form-settings.php:93
219
+ #: includes/views/tabs/admin-forms-general-settings.php:110
220
+ msgid "Select \"yes\" to hide the form fields after a successful sign-up."
221
+ msgstr "Selezionare \"si\" per nascondere i campi del modulo dopo l'avvenuta iscrizione."
222
+
223
+ #: includes/views/metaboxes/optional-form-settings.php:97
224
+ #: includes/views/tabs/admin-forms-general-settings.php:113
225
+ msgid "Redirect to URL after successful sign-ups"
226
+ msgstr "Redirect ad URL dopo iscrizione"
227
+
228
+ #: includes/views/metaboxes/optional-form-settings.php:100
229
+ #: includes/views/tabs/admin-forms-general-settings.php:116
230
+ msgid "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, including <code>http://</code>"
231
+ msgstr "Lasciare vuoto o inserire 0 per nessun reindirizzamento. Utilizzare URL completi (assoluti), incluso <code>http://</code>"
232
+
233
+ #: includes/views/metaboxes/optional-form-settings.php:104
234
+ msgid "Send an email copy of the form data?"
235
+ msgstr "Invia una copia dell'email con i dati del modulo?"
236
+
237
+ #: includes/views/metaboxes/optional-form-settings.php:108
238
+ msgid "Tick \"yes\" if you want to receive an email with the form data for every sign-up request."
239
+ msgstr "Seleziona \"si\" se vuoi ricevere una mail con i dati del modulo per ogni richiesta d'iscrizione."
240
+
241
+ #: includes/views/metaboxes/optional-form-settings.php:111
242
+ msgid "Send the copy to this email:"
243
+ msgstr "Invia una copia a questa E-M@il:"
244
+
245
+ #: includes/views/metaboxes/optional-form-settings.php:117
246
+ msgid "Messages"
247
+ msgstr "Messaggi"
248
+
249
+ #: includes/views/metaboxes/optional-form-settings.php:120
250
+ #: includes/views/tabs/admin-forms-general-settings.php:123
251
+ msgid "Success"
252
+ msgstr "Successo"
253
+
254
+ #: includes/views/metaboxes/optional-form-settings.php:124
255
+ #: includes/views/tabs/admin-forms-general-settings.php:128
256
+ msgid "Invalid email address"
257
+ msgstr "Indirizzo email non valido"
258
+
259
+ #: includes/views/metaboxes/optional-form-settings.php:128
260
+ #: includes/views/tabs/admin-forms-general-settings.php:132
261
+ msgid "Required field missing"
262
+ msgstr "Campo richiesto mancante"
263
+
264
+ #: includes/views/metaboxes/optional-form-settings.php:132
265
+ #: includes/views/tabs/admin-forms-general-settings.php:136
266
+ msgid "Already subscribed"
267
+ msgstr "Già iscritto"
268
+
269
+ #: includes/views/metaboxes/optional-form-settings.php:137
270
+ #: includes/views/tabs/admin-forms-general-settings.php:142
271
+ msgid "Invalid CAPTCHA"
272
+ msgstr "CAPTCHA non valido"
273
+
274
+ #: includes/views/metaboxes/optional-form-settings.php:142
275
+ #: includes/views/tabs/admin-forms-general-settings.php:147
276
+ msgid "Other errors"
277
+ msgstr "Altri errori"
278
+
279
+ #: includes/views/metaboxes/optional-form-settings.php:148
280
+ #: includes/views/tabs/admin-forms-general-settings.php:152
281
+ msgid "HTML tags like %s are allowed in the message fields."
282
+ msgstr "I tag HTML come %s sono ammessi nel campo messaggio."
283
+
284
+ #: includes/views/metaboxes/required-form-settings.php:14
285
+ msgid "Lists this form subscribes to"
286
+ msgstr "Elenca questo modulo agli iscritti a"
287
+
288
+ #: includes/views/metaboxes/required-form-settings.php:17
289
+ #: includes/views/pages/admin-checkbox-settings.php:38
290
+ msgid "No lists found, %sare you connected to MailChimp?%s"
291
+ msgstr "Nessun elenco trovato, %ssei connesso a MailChimp?%s"
292
+
293
+ #: includes/views/metaboxes/required-form-settings.php:29
294
+ msgid "Add a new field"
295
+ msgstr "Aggiungi un nuovo campo"
296
+
297
+ #: includes/views/metaboxes/required-form-settings.php:32
298
+ msgid "Select MailChimp field.."
299
+ msgstr "Seleziona i campi MailChimp.."
300
+
301
+ #: includes/views/metaboxes/required-form-settings.php:36
302
+ msgid "Submit Button"
303
+ msgstr "Pulsante Invio"
304
+
305
+ #: includes/views/metaboxes/required-form-settings.php:37
306
+ msgid "Lists Choice"
307
+ msgstr "Lista scelte"
308
+
309
+ #: includes/views/metaboxes/required-form-settings.php:45
310
+ msgid "Label"
311
+ msgstr "Etichetta"
312
+
313
+ #: includes/views/metaboxes/required-form-settings.php:45
314
+ #: includes/views/metaboxes/required-form-settings.php:50
315
+ #: includes/views/metaboxes/required-form-settings.php:55
316
+ msgid "(optional)"
317
+ msgstr "(opzionale)"
318
+
319
+ #: includes/views/metaboxes/required-form-settings.php:50
320
+ msgid "Placeholder"
321
+ msgstr "Segnaposto"
322
+
323
+ #: includes/views/metaboxes/required-form-settings.php:55
324
+ msgid "Initial value"
325
+ msgstr "Valore iniziale"
326
+
327
+ #: includes/views/metaboxes/required-form-settings.php:60
328
+ msgid "Labels"
329
+ msgstr "Etichette"
330
+
331
+ #: includes/views/metaboxes/required-form-settings.php:60
332
+ msgid "(leave empty to hide)"
333
+ msgstr "(lascia vuoto per nascondere)"
334
+
335
+ #: includes/views/metaboxes/required-form-settings.php:65
336
+ msgid "Wrap in paragraph %s tags?"
337
+ msgstr "Inserisce nel paragrafo %s tags?"
338
+
339
+ #: includes/views/metaboxes/required-form-settings.php:69
340
+ msgid "Required field?"
341
+ msgstr "Campi obbligatori?"
342
+
343
+ #: includes/views/metaboxes/required-form-settings.php:73
344
+ msgid "Add to form"
345
+ msgstr "Aggiungi al modulo"
346
+
347
+ #: includes/views/metaboxes/required-form-settings.php:77
348
+ msgid "Generated HTML"
349
+ msgstr "Generato HTML"
350
+
351
+ #: includes/views/metaboxes/required-form-settings.php:86
352
+ msgid "Form usage"
353
+ msgstr "Utilizza modulo"
354
+
355
+ #: includes/views/metaboxes/required-form-settings.php:87
356
+ msgid "Use the shortcode %s to display this form inside a post, page or text widget."
357
+ msgstr "Utilizzare lo shortcode %s per visualizzare questo form all'interno di un post, pagina o il testo del widget."
358
+
359
+ #: includes/views/pages/admin-checkbox-settings.php:11
360
+ #: includes/views/pages/admin-form-settings.php:10
361
+ #: includes/views/pages/admin-general-settings.php:10
362
+ #: includes/views/pages/admin-reports.php:10
363
+ msgid "MailChimp for WordPress"
364
+ msgstr "MailChimp per Wordpress"
365
+
366
+ #: includes/views/pages/admin-checkbox-settings.php:11
367
+ msgid "Checkbox Settings"
368
+ msgstr "Impostazioni Checkbox"
369
+
370
+ #: includes/views/pages/admin-checkbox-settings.php:14
371
+ msgid "To use sign-up checkboxes, select at least one list and one form to add the checkbox to."
372
+ msgstr "Per abilitare l'iscrizione, selezionare almeno una lista e un modulo per aggiungere l'opzione."
373
+
374
+ #: includes/views/pages/admin-checkbox-settings.php:21
375
+ msgid "MailChimp settings for checkboxes"
376
+ msgstr "Impostazioni MailChimp per le checkboxes"
377
+
378
+ #: includes/views/pages/admin-checkbox-settings.php:26
379
+ msgid "If you want to use sign-up checkboxes, select at least one MailChimp list to subscribe people to."
380
+ msgstr "Se si desidera utilizzare l'opzione di iscrizione, selezionare almeno una lista MailChimp per l'iscrizione delle persone."
381
+
382
+ #: includes/views/pages/admin-checkbox-settings.php:34
383
+ msgid "MailChimp Lists"
384
+ msgstr "Liste MailChimp"
385
+
386
+ #: includes/views/pages/admin-checkbox-settings.php:45
387
+ msgid "Select the list(s) to which people who check the checkbox should be subscribed."
388
+ msgstr "Selezionare gli elenchi a cui le persone che selezionano la checkbox devono essere iscritte."
389
+
390
+ #: includes/views/pages/admin-checkbox-settings.php:68
391
+ msgid "Checkbox settings"
392
+ msgstr "Impostazioni Checkbox"
393
+
394
+ #: includes/views/pages/admin-checkbox-settings.php:71
395
+ msgid "Add the checkbox to these forms"
396
+ msgstr "Aggiungi la checkbox a questi moduli"
397
+
398
+ #: includes/views/pages/admin-checkbox-settings.php:78
399
+ msgid "Selecting a form will automatically add the sign-up checkbox to it."
400
+ msgstr "Selezionare il modulo dove si aggiungerà automaticamente la checkbox di iscrizione."
401
+
402
+ #: includes/views/pages/admin-checkbox-settings.php:86
403
+ msgid "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 forms.</p>"
404
+ msgstr "Usa %s nel tuo Modulo Contatti 7 per aggiungere una l'opzione d'iscrizione al MC7</p>"
405
+
406
+ #: includes/views/pages/admin-checkbox-settings.php:91
407
+ msgid "Checkbox label text"
408
+ msgstr "Etichetta di testo della Checkbox"
409
+
410
+ #: includes/views/pages/admin-checkbox-settings.php:94
411
+ #: includes/views/pages/admin-checkbox-settings.php:134
412
+ msgid "HTML tags like %s are allowed in the label text."
413
+ msgstr "I tag HTML come %s sono ammessi nel testo dell'etichetta."
414
+
415
+ #: includes/views/pages/admin-checkbox-settings.php:98
416
+ msgid "Pre-check the checkbox?"
417
+ msgstr "Pre-selezionare l'iscrizione?"
418
+
419
+ #: includes/views/pages/admin-checkbox-settings.php:103
420
+ msgid "Load some default CSS?"
421
+ msgstr "Caricare i file CSS di default?"
422
+
423
+ #: includes/views/pages/admin-checkbox-settings.php:105
424
+ msgid "Select \"yes\" if the checkbox appears in a weird place."
425
+ msgstr "Selezionare \"si\" se la casella di controllo deve apparire in un posto bizzarro."
426
+
427
+ #: includes/views/pages/admin-checkbox-settings.php:108
428
+ msgid "WooCommerce checkbox position"
429
+ msgstr ""
430
+
431
+ #: includes/views/pages/admin-checkbox-settings.php:111
432
+ msgid "After the billing details"
433
+ msgstr "Dopo i dettagli di pagamento"
434
+
435
+ #: includes/views/pages/admin-checkbox-settings.php:112
436
+ msgid "After the additional information"
437
+ msgstr "Dopo le informazioni aggiuntive"
438
+
439
+ #: includes/views/pages/admin-checkbox-settings.php:115
440
+ msgid "Choose the position for the checkbox in your WooCommerce checkout form."
441
+ msgstr "Scegli la posizione per il controllo a selezione multipla nel tuo modulo di pagamento di WooCommerce"
442
+
443
+ #: includes/views/pages/admin-checkbox-settings.php:122
444
+ msgid "Custom label texts"
445
+ msgstr "Etichetta personalizzata"
446
+
447
+ #: includes/views/pages/admin-checkbox-settings.php:123
448
+ msgid "Override the default checkbox label text for any given checkbox using the fields below."
449
+ msgstr "Sostituisci il testo dell'etichetta della checkbox di default per ogni checkboxutilizzando i campi sottostanti."
450
+
451
+ #: includes/views/pages/admin-form-settings.php:13
452
+ msgid "Forms & Settings"
453
+ msgstr "Moduli & Settaggi"
454
+
455
+ #: includes/views/pages/admin-form-settings.php:14
456
+ msgid "CSS Styles Builder"
457
+ msgstr "Creare stili CSS"
458
+
459
+ #: includes/views/pages/admin-general-settings.php:10
460
+ msgid "License & API Settings"
461
+ msgstr "Licenze & Settaggi API"
462
+
463
+ #: includes/views/pages/admin-general-settings.php:19
464
+ msgid "API Settings"
465
+ msgstr "Settaggi API"
466
+
467
+ #: includes/views/pages/admin-general-settings.php:21
468
+ msgid "CONNECTED"
469
+ msgstr "CONNESSO"
470
+
471
+ #: includes/views/pages/admin-general-settings.php:23
472
+ msgid "NOT CONNECTED"
473
+ msgstr "DISCONNESSO"
474
+
475
+ #: includes/views/pages/admin-general-settings.php:29
476
+ msgid "API Key"
477
+ msgstr "Chiave API"
478
+
479
+ #: includes/views/pages/admin-general-settings.php:31
480
+ msgid "Your MailChimp API key"
481
+ msgstr "La tua chaive API MailChimp"
482
+
483
+ #: includes/views/pages/admin-general-settings.php:32
484
+ msgid "Get your API key here."
485
+ msgstr "Ottieni la tua chiave API qui."
486
+
487
+ #: includes/views/pages/admin-general-settings.php:48
488
+ msgid "MailChimp Data"
489
+ msgstr "Dati MailChimp"
490
+
491
+ #: includes/views/pages/admin-general-settings.php:49
492
+ msgid "The table below shows your MailChimp lists data. If you applied changes to your MailChimp lists, please use the following button to renew your cached data."
493
+ msgstr "La seguente tabella mostra i vostri elenchi in MailChimp. Se applicate le modifichealle vostre liste MailChimp, si prega di utilizzare il seguente pulsante perrinnovare la vostra cache."
494
+
495
+ #: includes/views/pages/admin-general-settings.php:55
496
+ #: includes/views/pages/admin-general-settings.php:126
497
+ msgid "Renew MailChimp lists"
498
+ msgstr "Aggiorna liste MailChimp"
499
+
500
+ #: includes/views/pages/admin-general-settings.php:113
501
+ msgid "No lists were found in your MailChimp account."
502
+ msgstr "Nessuna lista trovata nel tuo account MailChimp"
503
+
504
+ #: includes/views/pages/admin-reports.php:14
505
+ msgid "Statistics"
506
+ msgstr "Statistiche"
507
+
508
+ #: includes/views/pages/admin-reports.php:15
509
+ msgid "Log"
510
+ msgstr "Log"
511
+
512
+ #: includes/views/parts/admin-footer.php:9
513
+ msgid "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or email me directly at <a href=\"%s\">support@mc4wp.com</a>."
514
+ msgstr "Hai bisogno di aiuto? Dai un'occhiata alla <a href=\"%s\">documentazione del plugin</a> o scrivimi direttamente a <a href=\"%s\">support@mc4wp.com</a>."
515
+
516
+ #: includes/views/parts/admin-text-variables.php:13
517
+ msgid "Replaced with the form response (error or success messages)."
518
+ msgstr "Sostituite con il Modulo di Risposta (messaggi di errore o di successo)."
519
+
520
+ #: includes/views/parts/admin-text-variables.php:18
521
+ msgid "Replaced with a captcha field."
522
+ msgstr "Sostituite con il campo captcha."
523
+
524
+ #: includes/views/parts/admin-text-variables.php:23
525
+ msgid "Replaced with the number of subscribers on the selected list(s)"
526
+ msgstr "Sostituite con il numero di abbonati della lista/liste selezionata/e"
527
+
528
+ #: includes/views/parts/admin-text-variables.php:27
529
+ msgid "Replaced with the current site language, eg: %s"
530
+ msgstr "Sostituite con la lingua corrente del sito, eg: %s"
531
+
532
+ #: includes/views/parts/admin-text-variables.php:31
533
+ msgid "Replaced with the visitor's IP address"
534
+ msgstr "Sostituite con 'indirizzo IP del visitatore"
535
+
536
+ #: includes/views/parts/admin-text-variables.php:35
537
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
538
+ msgstr "Sostituite con la data corrente (yyyy/mm/dd eg: %s)"
539
+
540
+ #: includes/views/parts/admin-text-variables.php:39
541
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
542
+ msgstr "Sostituite con l'ora corrente (hh:mm:ss eg: %s)"
543
+
544
+ #: includes/views/parts/admin-text-variables.php:43
545
+ msgid "Replaced with the logged in user's email (or nothing, if there is no logged in user)"
546
+ msgstr "Sostituite con l'E-M@il dell'utente (o niente, se non vi è alcun utente collegato)"
547
+
548
+ #: includes/views/parts/admin-text-variables.php:47
549
+ msgid "First name of the current user"
550
+ msgstr "Nome dell'utente corrente"
551
+
552
+ #: includes/views/parts/admin-text-variables.php:51
553
+ msgid "Last name of the current user"
554
+ msgstr "Cognome dell'utente corrente"
555
+
556
+ #: includes/views/parts/admin-text-variables.php:55
557
+ msgid "Current user ID"
558
+ msgstr "Username Corrente"
559
+
560
+ #: includes/views/parts/admin-text-variables.php:59
561
+ msgid "Current URL"
562
+ msgstr "URL Corrente"
563
+
564
+ #: includes/views/tabs/admin-forms-css-builder.php:10
565
+ msgid "Use the fields below to create custom styling rules for your forms."
566
+ msgstr "Utilizzare i campi qui sotto per creare regole di stile personalizzato per i vostri moduli."
567
+
568
+ #: includes/views/tabs/admin-forms-css-builder.php:15
569
+ msgid "Select form to build styles for:"
570
+ msgstr "Seleziona il modulo per il quale creare gli stili:"
571
+
572
+ #: includes/views/tabs/admin-forms-css-builder.php:26
573
+ msgid "Create at least one form first."
574
+ msgstr "Prima di tutto crea almeno un modulo."
575
+
576
+ #: includes/views/tabs/admin-forms-css-builder.php:41
577
+ msgid "You need to have JavaScript enabled to see a preview of your form."
578
+ msgstr "Devi avere JavaScript abilitato per vedere l'anteprima del tuo modulo."
579
+
580
+ #: includes/views/tabs/admin-forms-css-builder.php:223
581
+ msgid "Are you sure you want to delete all custom styles for this form?"
582
+ msgstr "Sei sicuro di voler eliminare tutti gli stili personalizzati per questo modulo?"
583
+
584
+ #: includes/views/tabs/admin-forms-css-builder.php:223
585
+ msgid "Delete Form Styles"
586
+ msgstr "Elimina gli stili del modulo"
587
+
588
+ #: includes/views/tabs/admin-forms-css-builder.php:224
589
+ msgid "Use to delete all styles for this form"
590
+ msgstr "Usa per eliminare tutti gli stili per questo modulo"
591
+
592
+ #: includes/views/tabs/admin-forms-css-builder.php:231
593
+ msgid "Build CSS File"
594
+ msgstr "Crea il file CSS"
595
+
596
+ #: includes/views/tabs/admin-forms-general-settings.php:8
597
+ msgid "Sign-Up Forms"
598
+ msgstr "Moduli iscrizione"
599
+
600
+ #: includes/views/tabs/admin-forms-general-settings.php:8
601
+ msgid "Create New Form"
602
+ msgstr "Crea nuovo modulo"
603
+
604
+ #: includes/views/tabs/admin-forms-general-settings.php:16
605
+ msgid "General form settings"
606
+ msgstr "Modulo impostazioni generali"
607
+
608
+ #: includes/views/tabs/admin-forms-general-settings.php:19
609
+ msgid "Load form styles (CSS)?"
610
+ msgstr "Caricare stili dei moduli (CSS)?"
611
+
612
+ #: includes/views/tabs/admin-forms-general-settings.php:23
613
+ msgid "Yes, load basic form styles"
614
+ msgstr "Si, carica il foglio di stile di base"
615
+
616
+ #: includes/views/tabs/admin-forms-general-settings.php:24
617
+ msgid "Yes, load my custom form styles"
618
+ msgstr "Si, carica il foglio di stile personalizzato"
619
+
620
+ #: includes/views/tabs/admin-forms-general-settings.php:25
621
+ msgid "Yes, load default form theme"
622
+ msgstr "Si, carica il modulo con il tema stardard"
623
+
624
+ #: includes/views/tabs/admin-forms-general-settings.php:26
625
+ msgid "Light Theme"
626
+ msgstr "Tema Chiaro"
627
+
628
+ #: includes/views/tabs/admin-forms-general-settings.php:27
629
+ msgid "Red Theme"
630
+ msgstr "Tema Rosso"
631
+
632
+ #: includes/views/tabs/admin-forms-general-settings.php:28
633
+ msgid "Green Theme"
634
+ msgstr "Tema Verde"
635
+
636
+ #: includes/views/tabs/admin-forms-general-settings.php:29
637
+ msgid "Blue Theme"
638
+ msgstr "Tema Blu"
639
+
640
+ #: includes/views/tabs/admin-forms-general-settings.php:30
641
+ msgid "Dark Theme"
642
+ msgstr "Tema Scuro"
643
+
644
+ #: includes/views/tabs/admin-forms-general-settings.php:31
645
+ msgid "Custom Color Theme"
646
+ msgstr "Colore tema personalizzato"
647
+
648
+ #: includes/views/tabs/admin-forms-general-settings.php:36
649
+ msgid "If you %screated a custom stylesheet%s and want it to be loaded, select \"custom form styles\". Otherwise, choose the basic formatting styles or one of the default themes."
650
+ msgstr "Se e' stato %screato un foglio di stile personalizzato%s e si vuole che sia caricato,selezionare \"modulo stili personalizzato\". Altrimenti, scegliere uno stile di base o di uno dei temi di default."
651
+
652
+ #: includes/views/tabs/admin-forms-general-settings.php:40
653
+ msgid "Select Color"
654
+ msgstr "Seleziona il colore"
655
+
656
+ #: includes/views/tabs/admin-forms-general-settings.php:48
657
+ msgid "Save all changes"
658
+ msgstr "Salva le modifiche"
659
+
660
+ #: includes/views/tabs/admin-forms-general-settings.php:50
661
+ msgid "Default MailChimp settings"
662
+ msgstr "Impostazioni MailChimp iniziali"
663
+
664
+ #: includes/views/tabs/admin-forms-general-settings.php:51
665
+ #: includes/views/tabs/admin-forms-general-settings.php:99
666
+ msgid "The following settings apply to <strong>all</strong> forms but can be overridden on a per-form basis."
667
+ msgstr "Le seguenti impostazioni si applicano a <strong> tutti </ strong> i moduli,ma possono essere sovrascritte su un modulo base."
668
+
669
+ #: includes/views/tabs/admin-forms-general-settings.php:98
670
+ msgid "Default Form Settings"
671
+ msgstr "Impostazioni modulo predefinite"
672
+
673
+ #: includes/views/tabs/admin-forms-general-settings.php:120
674
+ msgid "Default Messages"
675
+ msgstr "Messaggi predefiniti"
676
+
677
+ msgid "MailChimp for WordPress Pro"
678
+ msgstr "MailChimp per WordPress Pro"
679
+
680
+ msgid "https://mc4wp.com/"
681
+ msgstr "https://mc4wp.com/"
682
+
683
+ msgid "Pro version of MailChimp for WordPress. Adds various sign-up methods to your website."
684
+ msgstr "Versione Pro di MailChimp per WordPress. Aggiunge vari metodi d'iscrizione al tuo sito."
685
+
686
+ msgid "Danny van Kooten"
687
+ msgstr "Danny van Kooten"
688
+
689
+ msgid "http://dannyvankooten.com"
690
+ msgstr "http://dannyvankooten.com"
691
+
692
+ #: includes/admin/class-admin.php:215
693
+ msgid "Settings"
694
+ msgstr "Impostazioni"
695
+
696
+ #: includes/admin/class-admin.php:234
697
+ msgid "Documentation"
698
+ msgstr "Documentazione"
699
+
700
+ #: includes/admin/class-admin.php:277
701
+ msgid "Save Form"
702
+ msgstr "Salva Modulo"
703
+
704
+ #: includes/admin/class-admin.php:281
705
+ msgid "Update Form"
706
+ msgstr "Aggiorna Modulo"
707
+
708
+ #: includes/admin/class-admin.php:314
709
+ msgid "Your email address"
710
+ msgstr "Il tuo indirizzo E-M@il"
711
+
712
+ #: includes/admin/class-admin.php:315
713
+ msgid "Email address"
714
+ msgstr "Indirizzo E-M@il"
715
+
716
+ #: includes/admin/class-admin.php:316
717
+ msgid "Sign up"
718
+ msgstr "Iscriviti"
719
+
720
+ #: includes/admin/class-admin.php:332
721
+ msgid "Back to general form settings"
722
+ msgstr "Torna alle impostazioni generali"
723
+
724
+ #: includes/admin/class-admin.php:334
725
+ msgid "Form updated."
726
+ msgstr "Modulo aggiornato."
727
+
728
+ #: includes/admin/class-admin.php:335
729
+ msgid "Form saved."
730
+ msgstr "Modulo salvato."
731
+
732
+ #: includes/admin/class-admin.php:343
733
+ msgid "An EMAIL field. Example: <code>%s</code>"
734
+ msgstr "Un campo E-M@il. Esempio: <code>%s</code>"
735
+
736
+ #: includes/admin/class-admin.php:349
737
+ msgid "A submit button. Example: <code>%s</code>"
738
+ msgstr "Pulsante di conferma. Esempio: <code>%s</code>"
739
+
740
+ #: includes/admin/class-admin.php:349
741
+ msgid "Sign Up"
742
+ msgstr "Iscriviti"
743
+
744
+ #: includes/admin/class-admin.php:377
745
+ msgid "A '%s' field"
746
+ msgstr "Un '%s' campo"
747
+
748
+ #: includes/admin/class-admin.php:389
749
+ msgid "Your form is missing the following (required) form fields:"
750
+ msgstr "Nel modulo mancano i seguenti campi obbligatori:"
751
+
752
+ #: includes/admin/class-admin.php:461
753
+ #: includes/views/metaboxes/optional-form-settings.php:69
754
+ msgid "Form Settings"
755
+ msgstr "Settaggi Modulo"
756
+
757
+ #: includes/admin/class-admin.php:462
758
+ msgid "Optional Settings"
759
+ msgstr "Settaggi Opzionali"
760
+
761
+ #: includes/admin/class-admin.php:463
762
+ msgid "Form Variables"
763
+ msgstr "Variabili Modulo"
764
+
765
+ #: includes/admin/class-admin.php:503
766
+ msgid "Use the following variables to add some dynamic content to your form."
767
+ msgstr "Utilizzare le seguenti variabili per aggiungere alcuni contenuti dinamici al form."
768
+
769
+ #: includes/admin/class-admin.php:601
770
+ msgid "MailChimp & License"
771
+ msgstr "MailChimp & Licenza"
772
+
773
+ #: includes/admin/class-admin.php:602
774
+ msgid "Checkboxes"
775
+ msgstr "Caselle di controllo a selezione multipla"
776
+
777
+ #: includes/admin/class-admin.php:603
778
+ #: includes/views/pages/admin-form-settings.php:10
779
+ msgid "Forms"
780
+ msgstr "Moduli"
781
+
782
+ #: includes/admin/class-admin.php:604 includes/views/pages/admin-reports.php:10
783
+ msgid "Reports"
784
+ msgstr "Rapporti"
785
+
786
+ #: includes/admin/class-admin.php:701
787
+ msgid "Comment form"
788
+ msgstr "Modulo Commenti"
789
+
790
+ #: includes/admin/class-admin.php:702
791
+ msgid "Registration form"
792
+ msgstr "Modulo Registrazione"
793
+
794
+ #: includes/admin/class-admin.php:706
795
+ msgid "MultiSite forms"
796
+ msgstr "Modulo MultiSite"
797
+
798
+ #: includes/admin/class-admin.php:710 includes/tables/class-log-table.php:212
799
+ msgid "BuddyPress registration"
800
+ msgstr "Registrazione BuddyPress"
801
+
802
+ #: includes/admin/class-admin.php:718 includes/admin/class-admin.php:722
803
+ msgid "%s checkout"
804
+ msgstr "%s cassa"
805
+
806
+ #: includes/admin/class-admin.php:758
807
+ msgid "Please make sure the plugin is connected to MailChimp. <a href=\"%s\">Provide a valid API key.</a>"
808
+ msgstr "Si prega di assicurarsi che il plugin sia collegato a MailChimp. <a href=\"%s\">Inserire una chiave API valida.</a>"
809
+
810
+ #: includes/admin/class-admin.php:768
811
+ msgid "Renewed MailChimp cache."
812
+ msgstr "Aggiorna la cache di MailChimp"
813
+
814
+ #: includes/admin/class-admin.php:770
815
+ msgid "Failed to renew MailChimp cache - please try again later."
816
+ msgstr "Impossibile aggiornare la cache MailChimp - si prega di riprovare piu' tardi."
817
+
818
+ #: includes/admin/class-admin.php:860
819
+ msgid "End date can't be before the start date"
820
+ msgstr "La data di fine non puo' essere antecedente alla data di inizio"
821
+
822
+ #: includes/admin/class-admin.php:892
823
+ msgid "You disabled logging using the %s filter. Re-enable it to use the Reports page."
824
+ msgstr "Hai disattivato il log utilizzando il %s filtro. Riattivalo per utilizzare le relazioni di pagina."
825
+
826
+ #: includes/admin/class-admin.php:908
827
+ msgid "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the settings you had set in the Lite version, please <a href=\"%s\">deactivate it now</a> to prevent problems"
828
+ msgstr "\"<strong>Benvenuti a MailChimp per WordPress Pro!</strong> Abbiamo trasferito le impostazioni inserite nella versione Lite, perfavore <a href=\"%s\">disattivarlo </a> per prevenire problemi\""
829
+
830
+ #: includes/admin/class-styles-builder.php:319
831
+ msgid "Couldn't create the stylesheet. Manually add the generated CSS to your theme stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
832
+ msgstr "Impossibile creare il foglio di stile. Aggiungere manualmente il CSS generato per il vostro foglio di stile utilizzando il %sTheme Editor%s o utilizzare FTP e modificare <em>%s</ em>."
833
+
834
+ #: includes/admin/class-styles-builder.php:320
835
+ msgid "%sShow generated CSS%s"
836
+ msgstr "%sMostra CSS generato%s"
837
+
838
+ #: includes/admin/class-styles-builder.php:330
839
+ msgid "To apply these styles on your website, select \"load custom form styles\" in the %sform settings%s"
840
+ msgstr "Per applicare questi stili sul tuo sito web, selezionare \"caricare stili di modulo personalizzato\" nel %s moduloimpostazioni di %s"
841
+
842
+ #: includes/admin/class-styles-builder.php:331
843
+ msgid "The %sCSS Stylesheet%s has been created."
844
+ msgstr "Il %sCSS foglio di stile%s è stato creato."
845
+
846
+ #: includes/class-form-manager.php:239
847
+ msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
848
+ msgstr "<strong> Errore: </ strong> Si prega di specificare un ID del modulo. Esempio: %s."
849
+
850
+ #: includes/class-form-manager.php:253
851
+ msgid "<strong>Error:</strong> Sign-up form not found. Please check if you used the correct form ID."
852
+ msgstr "<strong> Errore: </ strong> modulo di iscrizione non trovato. Si prega di verificare se è stato utilizzato l'ID di modulo corretto."
853
+
854
+ #: includes/class-form-request.php:453
855
+ msgid "New Sign-Up"
856
+ msgstr "Nuova iscrizione"
857
+
858
+ #: includes/class-form-request.php:454
859
+ msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
860
+ msgstr "<strong>%s</ strong> firmato a %s su %s utilizzando il modulo \"%s\"."
861
+
862
+ #: includes/class-form-request.php:495
863
+ msgid "Note that you've enabled double opt-in for the \"%s\" form. The user won't be added to the selected MailChimp lists until they confirm their email address."
864
+ msgstr ""
865
+
866
+ #: includes/class-form-request.php:498
867
+ msgid "This email was auto-sent by the MailChimp for WordPress plugin."
868
+ msgstr "Questa email è stata auto-inviata da MailChimp per WordPress."
869
+
870
+ #: includes/class-widget.php:20
871
+ msgid "MailChimp for WP Form"
872
+ msgstr "Modulo MailChimp per WP"
873
+
874
+ #: includes/class-widget.php:21
875
+ msgid "Displays one of your MailChimp for WordPress sign-up forms"
876
+ msgstr "Visualizza uno dei tuoi moduli di iscrizione di MailChimp per WordPress"
877
+
878
+ #: includes/class-widget.php:39
879
+ msgid "Please select the sign-up form you'd like to show here in the <a href=\"%s\">widget settings</a>."
880
+ msgstr "Si prega di selezionare il modulo di iscrizione che vuoi mostrare qui in <a href=\"%s\"> impostazioni dei widget </a>."
881
+
882
+ #: includes/class-widget.php:68
883
+ msgid "Newsletter"
884
+ msgstr ""
885
+
886
+ #: includes/class-widget.php:79
887
+ msgid "Title:"
888
+ msgstr "Titolo:"
889
+
890
+ #: includes/class-widget.php:83
891
+ msgid "Form:"
892
+ msgstr "Modulo:"
893
+
894
+ #: includes/class-widget.php:85
895
+ msgid "Select the form to show"
896
+ msgstr "Selezionatre il modulo da visualizzare"
897
+
898
+ #: includes/class-widget.php:93
899
+ msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
900
+ msgstr "Non hai alcun modulo di iscrizione. <a href=\"%s\"> Creane uno adesso. </a>"
901
+
902
+ #: includes/functions/general.php:20
903
+ msgid "Sign me up for the newsletter!"
904
+ msgstr "Iscrivimi alla newsletter!"
905
+
906
+ #: includes/functions/general.php:43
907
+ msgid "Thank you, your sign-up request was successful! Please check your email inbox to confirm."
908
+ msgstr "Grazie, la tua richiesta di iscrizione ha avuto successo! Controlla la tua E-M@il per confermare."
909
+
910
+ #: includes/functions/general.php:44
911
+ msgid "Oops. Something went wrong. Please try again later."
912
+ msgstr "Oops. Qualcosa è andato storto. Riprova più tardi."
913
+
914
+ #: includes/functions/general.php:45
915
+ msgid "Please provide a valid email address."
916
+ msgstr "Si prega di fornire un indirizzo E-M@il valido."
917
+
918
+ #: includes/functions/general.php:46
919
+ msgid "Given email address is already subscribed, thank you!"
920
+ msgstr "Indirizzo E-M@il inserito è già iscritto, grazie!"
921
+
922
+ #: includes/functions/general.php:47
923
+ msgid "Please complete the CAPTCHA."
924
+ msgstr "Si prega di compilare il CAPTCHA."
925
+
926
+ #: includes/functions/general.php:48
927
+ msgid "Please fill in the required fields."
928
+ msgstr "Si prega di compilare i campi obbligatori."
929
+
930
+ #: includes/integrations/class-cf7.php:44
931
+ #: includes/views/metaboxes/optional-form-settings.php:16
932
+ #: includes/views/metaboxes/optional-form-settings.php:30
933
+ #: includes/views/metaboxes/optional-form-settings.php:44
934
+ #: includes/views/metaboxes/optional-form-settings.php:58
935
+ #: includes/views/metaboxes/optional-form-settings.php:75
936
+ #: includes/views/metaboxes/optional-form-settings.php:87
937
+ #: includes/views/metaboxes/optional-form-settings.php:106
938
+ #: includes/views/pages/admin-checkbox-settings.php:52
939
+ #: includes/views/pages/admin-checkbox-settings.php:60
940
+ #: includes/views/pages/admin-checkbox-settings.php:99
941
+ #: includes/views/pages/admin-checkbox-settings.php:104
942
+ #: includes/views/tabs/admin-forms-general-settings.php:58
943
+ #: includes/views/tabs/admin-forms-general-settings.php:69
944
+ #: includes/views/tabs/admin-forms-general-settings.php:79
945
+ #: includes/views/tabs/admin-forms-general-settings.php:90
946
+ #: includes/views/tabs/admin-forms-general-settings.php:104
947
+ #: includes/views/tabs/admin-forms-general-settings.php:109
948
+ msgid "Yes"
949
+ msgstr ""
950
+
951
+ #: includes/integrations/class-cf7.php:44
952
+ #: includes/views/metaboxes/optional-form-settings.php:18
953
+ #: includes/views/metaboxes/optional-form-settings.php:32
954
+ #: includes/views/metaboxes/optional-form-settings.php:46
955
+ #: includes/views/metaboxes/optional-form-settings.php:60
956
+ #: includes/views/metaboxes/optional-form-settings.php:77
957
+ #: includes/views/metaboxes/optional-form-settings.php:89
958
+ #: includes/views/metaboxes/optional-form-settings.php:107
959
+ #: includes/views/pages/admin-checkbox-settings.php:52
960
+ #: includes/views/pages/admin-checkbox-settings.php:62
961
+ #: includes/views/pages/admin-checkbox-settings.php:99
962
+ #: includes/views/pages/admin-checkbox-settings.php:104
963
+ #: includes/views/tabs/admin-forms-general-settings.php:22
964
+ #: includes/views/tabs/admin-forms-general-settings.php:60
965
+ #: includes/views/tabs/admin-forms-general-settings.php:71
966
+ #: includes/views/tabs/admin-forms-general-settings.php:81
967
+ #: includes/views/tabs/admin-forms-general-settings.php:92
968
+ #: includes/views/tabs/admin-forms-general-settings.php:104
969
+ #: includes/views/tabs/admin-forms-general-settings.php:109
970
+ msgid "No"
971
+ msgstr ""
972
+
973
+ #: includes/library/license-manager/class-license-manager.php:152
974
+ msgid "I know. Don't bug me."
975
+ msgstr "Lo so."
976
+
977
+ #: includes/library/license-manager/class-license-manager.php:171
978
+ msgid "<b>Warning!</b> You're blocking external requests which means you won't be able to get %s updates. Please add %s to %s."
979
+ msgstr "<b> Attenzione! </ b> Stai bloccando le richieste esterne, il che significa che non sarai in grado di ottenere gli aggiornamenti %s. Si prega di aggiungere %s in %s."
980
+
981
+ #: includes/library/license-manager/class-license-manager.php:213
982
+ msgid "Your %s license has been activated. You have an unlimited license. "
983
+ msgstr "È stata attivata la tua licenza %s. Hai una licenza illimitata."
984
+
985
+ #: includes/library/license-manager/class-license-manager.php:215
986
+ msgid "Your %s license has been activated. You have used %d/%d activations. "
987
+ msgstr "È stata attivata la tua licenza %s. È stato utilizzato %d/%d attivazioni."
988
+
989
+ #: includes/library/license-manager/class-license-manager.php:220
990
+ msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
991
+ msgstr "<a href=\"%s\"> Lo sapevate che è possibile aggiornare la licenza? </a>"
992
+
993
+ #: includes/library/license-manager/class-license-manager.php:224
994
+ msgid "<a href=\"%s\">Your license is expiring in %d days, would you like to extend it?</a>"
995
+ msgstr "<a href=\"%s\">La licenza è in scadenza in %d giorni, volete rinnovarla? </a>"
996
+
997
+ #: includes/library/license-manager/class-license-manager.php:233
998
+ msgid "You've reached your activation limit. You must <a href=\"%s\">reset</a> or <a href=\"%s\">upgrade your license</a> to use it on this site."
999
+ msgstr ""
1000
+
1001
+ #: includes/library/license-manager/class-license-manager.php:236
1002
+ msgid "Your license has expired. You must <a href=\"%s\">extend your license</a> in order to use it again."
1003
+ msgstr "La licenza è scaduta. È necessario <a href=\"%s\"> estendere la licenza </a> al fine di utilizzarlo di nuovo."
1004
+
1005
+ #: includes/library/license-manager/class-license-manager.php:239
1006
+ msgid "Failed to activate your license, your license key seems to be invalid."
1007
+ msgstr "Impossibile attivare la licenza, la chiave di licenza sembra non essere valida."
1008
+
1009
+ #: includes/library/license-manager/class-license-manager.php:264
1010
+ msgid "Your %s license has been deactivated."
1011
+ msgstr "La vostra licenza %s non è attiva."
1012
+
1013
+ #: includes/library/license-manager/class-license-manager.php:266
1014
+ msgid "Failed to deactivate your %s license."
1015
+ msgstr "Impossibile disattivare la licenza %s."
1016
+
1017
+ #: includes/library/license-manager/class-license-manager.php:304
1018
+ msgid "Request error: \"%s\""
1019
+ msgstr "Richiesta di errore: \"%s\""
1020
+
1021
+ #: includes/library/license-manager/class-license-manager.php:463
1022
+ msgid "%s: License Settings"
1023
+ msgstr "%s: Impostazioni licenza"
1024
+
1025
+ #: includes/library/license-manager/class-plugin-license-manager.php:67
1026
+ msgid "%s is network activated, please contact your site administrator to manage the license."
1027
+ msgstr "%s la rete è attiva, contattare l'amministratore del sito per gestire la licenza."
1028
+
1029
+ #: includes/library/license-manager/class-update-manager.php:69
1030
+ msgid "%s failed to check for updates because of the following error: <em>%s</em>"
1031
+ msgstr "%s non è riuscito a controllare gli aggiornamenti a causa del seguente errore: <em>%s</ em>"
1032
+
1033
+ #: includes/library/license-manager/class-update-manager.php:131
1034
+ msgid "This site has not been activated properly on dannyvankooten.com and thus cannot check for future updates. Please activate your site with a valid license key."
1035
+ msgstr "Questo sito non è stato attivato correttamente su dannyvankooten.com e quindi non in grado di controllare gli aggiornamenti futuri. Si prega di attivare il tuo sito con una chiave di licenza valida."
1036
+
1037
+ #: includes/library/license-manager/views/form.php:23
1038
+ msgid "License status"
1039
+ msgstr "Stato licenza"
1040
+
1041
+ #: includes/library/license-manager/views/form.php:33
1042
+ msgid "Toggle license status"
1043
+ msgstr "Toggle stato licenza"
1044
+
1045
+ #: includes/library/license-manager/views/form.php:37
1046
+ msgid "Deactivate License"
1047
+ msgstr "Disattivare Licenza"
1048
+
1049
+ #: includes/library/license-manager/views/form.php:38
1050
+ msgid "(deactivate your license so you can activate it on another WordPress site)"
1051
+ msgstr "(disattivare la licenza in modo da poterla attivare su un altro sito WordPress)"
1052
+
1053
+ #: includes/library/license-manager/views/form.php:42
1054
+ msgid "Activate License"
1055
+ msgstr "Attivare Licenza"
1056
+
1057
+ #: includes/library/license-manager/views/form.php:44
1058
+ msgid "Please enter a license key in the field below first."
1059
+ msgstr "Prima inserisci una chiave di licenza nel campo sottostante."
1060
+
1061
+ #: includes/library/license-manager/views/form.php:52
1062
+ msgid "License Key"
1063
+ msgstr "Chiave Licenza"
1064
+
1065
+ #: includes/library/license-manager/views/form.php:54
1066
+ msgid "Paste your license key here, as found in the email receipt."
1067
+ msgstr ""
1068
+ "\n"
1069
+ "Incollare la chiave di licenza qui, come si trova nella ricevuta email."
1070
+
1071
+ #: includes/library/license-manager/views/form.php:56
1072
+ msgid "You defined your license key using the %s PHP constant."
1073
+ msgstr "Definisci la tua chiave di licenza usando la %s costante PHP."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mailchimp-for-wp-nl_NL.mo CHANGED
Binary file
languages/mailchimp-for-wp-nl_NL.po CHANGED
@@ -1,1290 +1,1071 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: MailChimp for WordPress\n"
4
- "POT-Creation-Date: 2014-08-12 15:12+0100\n"
5
- "PO-Revision-Date: 2014-08-12 15:17+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.7\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/admin/class-admin.php:183
19
- msgid "Settings"
20
- msgstr "Instellingen"
21
-
22
- #: ../includes/admin/class-admin.php:202
23
- msgid "Documentation"
24
- msgstr "Documentatie"
25
-
26
- #: ../includes/admin/class-admin.php:245
27
- msgid "Save Form"
28
- msgstr "Formulier opslaan"
29
-
30
- #: ../includes/admin/class-admin.php:249
31
- msgid "Update Form"
32
- msgstr "Formulier updaten"
33
-
34
- #: ../includes/admin/class-admin.php:282
35
- msgid "Your email address"
36
- msgstr "Jouw emailadres"
37
-
38
- #: ../includes/admin/class-admin.php:283
39
- msgid "Email address"
40
- msgstr "Emailadres"
41
-
42
- #: ../includes/admin/class-admin.php:284
43
- msgid "Sign up"
44
- msgstr "Inschrijven"
45
-
46
- #: ../includes/admin/class-admin.php:300
47
- msgid "Back to general form settings"
48
- msgstr "Terug naar generieke formulier instellingen."
49
-
50
- #: ../includes/admin/class-admin.php:302
51
- msgid "Form updated."
52
- msgstr "Formulier geupdate"
53
-
54
- #: ../includes/admin/class-admin.php:303
55
- msgid "Form saved."
56
- msgstr "Formulier opgeslagen"
57
-
58
- #: ../includes/admin/class-admin.php:311
59
- #, php-format
60
- msgid "An EMAIL field. Example: <code>%s</code>"
61
- msgstr "Een EMAIL veld. Voorbeeld: <code>%s</code>"
62
-
63
- #: ../includes/admin/class-admin.php:317
64
- #, php-format
65
- msgid "A submit button. Example: <code>%s</code>"
66
- msgstr "Een verzendknop. Voorbeeld: <code>%s</code>"
67
-
68
- #: ../includes/admin/class-admin.php:317
69
- #, fuzzy
70
- msgid "Sign Up"
71
- msgstr "Inschrijven"
72
-
73
- #: ../includes/admin/class-admin.php:345
74
- #, php-format
75
- msgid "A '%s' field"
76
- msgstr "Een '%s' veld"
77
-
78
- #: ../includes/admin/class-admin.php:357
79
- msgid "Your form is missing the following (required) form fields:"
80
- msgstr "Je formulier mist de volgende (verplichte) velden:"
81
-
82
- #: ../includes/admin/class-admin.php:429
83
- #, fuzzy
84
- msgid "Form Settings"
85
- msgstr "Formulier Instellingen"
86
-
87
- #: ../includes/admin/class-admin.php:430
88
- #, fuzzy
89
- msgid "Optional Settings"
90
- msgstr "Optionele Instellingen"
91
-
92
- #: ../includes/admin/class-admin.php:431
93
- #, fuzzy
94
- msgid "Form Variables"
95
- msgstr "Formulier variabelen"
96
-
97
- #: ../includes/admin/class-admin.php:465
98
- msgid "Use the following variables to add some dynamic content to your form."
99
- msgstr ""
100
- "Gebruik de volgende variabelen om wat dynamische inhoud aan je formulier toe "
101
- "te voegen"
102
-
103
- #: ../includes/admin/class-admin.php:547
104
- #, fuzzy
105
- msgid "MailChimp & License"
106
- msgstr "MailChimp Lijsten"
107
-
108
- #: ../includes/admin/class-admin.php:548
109
- msgid "Checkboxes"
110
- msgstr "Checkboxes"
111
-
112
- #: ../includes/admin/class-admin.php:549
113
- #: ../includes/tables/class-forms-table.php:20
114
- #: ../includes/views/pages/admin-form-settings.php:10
115
- msgid "Forms"
116
- msgstr "Formulieren"
117
-
118
- #: ../includes/admin/class-admin.php:550
119
- #: ../includes/views/pages/admin-reports.php:10
120
- msgid "Reports"
121
- msgstr "Rapporten"
122
-
123
- #: ../includes/admin/class-admin.php:634
124
- msgid "Comment form"
125
- msgstr "Reactieformulier"
126
-
127
- #: ../includes/admin/class-admin.php:635
128
- msgid "Registration form"
129
- msgstr "Registratieformulier"
130
-
131
- #: ../includes/admin/class-admin.php:639
132
- msgid "MultiSite forms"
133
- msgstr "MultiSite formulieren"
134
-
135
- #: ../includes/admin/class-admin.php:643
136
- #: ../includes/tables/class-log-table.php:212
137
- msgid "BuddyPress registration"
138
- msgstr "BuddyPress registratie"
139
-
140
- #: ../includes/admin/class-admin.php:651 ../includes/admin/class-admin.php:655
141
- #, php-format
142
- msgid "%s checkout"
143
- msgstr "%s checkout"
144
-
145
- #: ../includes/admin/class-admin.php:689
146
- #, php-format
147
- msgid ""
148
- "Please make sure the plugin is connected to MailChimp. <a href=\"%s"
149
- "\">Provide a valid API key.</a>"
150
- msgstr ""
151
- "Zorg aub dat de plugin een connectie met MailChimp heeft. <a href=\"%s"
152
- "\">Geef een geldige API sleutel in.</a>"
153
-
154
- #: ../includes/admin/class-admin.php:699
155
- msgid "Renewed MailChimp cache."
156
- msgstr "MailChimp cache met succes vernieuwd."
157
-
158
- #: ../includes/admin/class-admin.php:701
159
- msgid "Failed to renew MailChimp cache - please try again later."
160
- msgstr ""
161
- "Het is niet gelukt om de MailChimp cache te legen - probeer het alsjeblieft "
162
- "later opnieuw."
163
-
164
- #: ../includes/admin/class-admin.php:779
165
- msgid "End date can't be before the start date"
166
- msgstr "Einddatum kan niet vóór de startdatum liggen"
167
-
168
- #: ../includes/admin/class-admin.php:811
169
- #, php-format
170
- msgid ""
171
- "You disabled logging using the %s filter. Re-enable it to use the Reports "
172
- "page."
173
- msgstr ""
174
- "Je hebt logging uitgeschakeld met behulp van de %s filter. Om de Reports "
175
- "pagina te kunnen gebruiken moet logging ingeschakeld zijn."
176
-
177
- #: ../includes/admin/class-admin.php:827
178
- #, php-format
179
- msgid ""
180
- "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
181
- "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
182
- "it now</a> to prevent problems"
183
- msgstr ""
184
- "<strong>Welkom bij MailChimp voor WordPress Pro!</strong> Je instellingen "
185
- "uit de Lite versie zijn overgezet, deactiveer <a href=\"%s\">de Lite plugin</"
186
- "a> om problemen te voorkomen."
187
-
188
- #: ../includes/admin/class-css-builder.php:270
189
- #, php-format
190
- msgid ""
191
- "Couldn't create the stylesheet. Manually add the generated CSS to your theme "
192
- "stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
193
- msgstr ""
194
- "De stylesheet kon niet worden gecreëerd. Voeg de gegenereerde CSS manueel "
195
- "toe aan je thema stylesheet door de %sThema Editor%s te gebruiken, of "
196
- "gebruik FTP en wijzig <em>%s</em>"
197
-
198
- #: ../includes/admin/class-css-builder.php:271
199
- #, fuzzy, php-format
200
- msgid "%sShow generated CSS%s"
201
- msgstr "%sToon CSS%s"
202
-
203
- #: ../includes/admin/class-css-builder.php:281
204
- #, php-format
205
- msgid ""
206
- "To apply these styles on your website, select \"load custom form styles\" in "
207
- "the %sform settings%s"
208
- msgstr ""
209
- "Selecteer \"laad custom formulier stijlen\" in de %sformulier instellingen%s "
210
- "om deze stijlen op je website te gebruiken"
211
-
212
- #: ../includes/admin/class-css-builder.php:282
213
- #, php-format
214
- msgid "The %sCSS Stylesheet%s has been created."
215
- msgstr "De %sCSS Stylesheet%s is gecreëerd. "
216
-
217
- #: ../includes/class-form-manager.php:238
218
- #, php-format
219
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
220
- msgstr "<strong>Fout:</strong> Geef aub een formulier ID in. Example: %s"
221
-
222
- #: ../includes/class-form-manager.php:252
223
- msgid ""
224
- "<strong>Error:</strong> Sign-up form not found. Please check if you used the "
225
- "correct form ID."
226
- msgstr ""
227
- "<strong>Fout:</strong> Inschrijfformulier niet gevonden. Check aub of je het "
228
- "correcte formulier ID gebruikt hebt."
229
-
230
- #: ../includes/class-form-request.php:453
231
- msgid "New Sign-Up"
232
- msgstr "Nieuwe inschrijving"
233
-
234
- #: ../includes/class-form-request.php:454
235
- #, php-format
236
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
237
- msgstr ""
238
- "<strong>%s</strong> schreef zich om %s op %s in met het formulier \"%s\""
239
-
240
- #: ../includes/class-form-request.php:493
241
- msgid "This email was auto-sent by the MailChimp for WordPress plugin."
242
- msgstr "Deze email is gestuurd door de MailChimp for WordPress plugin."
243
-
244
- #: ../includes/class-widget.php:20
245
- msgid "MailChimp for WP Form"
246
- msgstr "MailChimp voor WP formulier"
247
-
248
- #: ../includes/class-widget.php:21
249
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
250
- msgstr "Toont een van je MailChimp for WordPress inschrijfformulieren"
251
-
252
- #: ../includes/class-widget.php:39
253
- #, php-format
254
- msgid ""
255
- "Please select the sign-up form you'd like to show here in the <a href=\"%s"
256
- "\">widget settings</a>."
257
- msgstr ""
258
- "Selecteer aub het inschrijfformulier dat je hier wilt laten zien in de <a "
259
- "href=\"%s\">widget instellingen</a>."
260
-
261
- #: ../includes/class-widget.php:68
262
- msgid "Newsletter"
263
- msgstr "Nieuwsbrief"
264
-
265
- #: ../includes/class-widget.php:79
266
- msgid "Title:"
267
- msgstr "Titel:"
268
-
269
- #: ../includes/class-widget.php:83
270
- msgid "Form:"
271
- msgstr "Formulier:"
272
-
273
- #: ../includes/class-widget.php:85
274
- msgid "Select the form to show"
275
- msgstr "Selecteer het formulier om te tonen"
276
-
277
- #: ../includes/class-widget.php:93
278
- #, php-format
279
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
280
- msgstr "Je hebt nog geen inschrijfformulieren. <a href=\"%s\">Maak er een.</a>"
281
-
282
- #: ../includes/functions/general.php:20
283
- msgid "Sign me up for the newsletter!"
284
- msgstr "Schrijf me in voor de nieuwsbrief!"
285
-
286
- #: ../includes/functions/general.php:42
287
- #, fuzzy
288
- msgid ""
289
- "Thank you, your sign-up request was successful! Please check your email "
290
- "inbox to confirm."
291
- msgstr ""
292
- "Dankjewel, je inschrijfverzoek was succesvol. Controleer aub uw email inbox."
293
-
294
- #: ../includes/functions/general.php:43
295
- msgid "Oops. Something went wrong. Please try again later."
296
- msgstr "Oeps, er ging iets fout. Probeer het aub later opnieuw."
297
-
298
- #: ../includes/functions/general.php:44
299
- msgid "Please provide a valid email address."
300
- msgstr "Geef een geldig emailadres in."
301
-
302
- #: ../includes/functions/general.php:45
303
- msgid "Given email address is already subscribed, thank you!"
304
- msgstr "Dit emailadres is reeds ingeschreven, dankjewel!"
305
-
306
- #: ../includes/functions/general.php:46
307
- msgid "Please complete the CAPTCHA."
308
- msgstr "Vul aub een geldige CAPTCHA in."
309
-
310
- #: ../includes/functions/general.php:47
311
- msgid "Please fill in the required fields."
312
- msgstr "Vul aub de verplichte velden in."
313
-
314
- #: ../includes/integrations/class-cf7.php:44
315
- #: ../includes/views/metaboxes/optional-form-settings.php:16
316
- #: ../includes/views/metaboxes/optional-form-settings.php:30
317
- #: ../includes/views/metaboxes/optional-form-settings.php:44
318
- #: ../includes/views/metaboxes/optional-form-settings.php:58
319
- #: ../includes/views/metaboxes/optional-form-settings.php:75
320
- #: ../includes/views/metaboxes/optional-form-settings.php:87
321
- #: ../includes/views/metaboxes/optional-form-settings.php:106
322
- #: ../includes/views/pages/admin-checkbox-settings.php:52
323
- #: ../includes/views/pages/admin-checkbox-settings.php:60
324
- #: ../includes/views/pages/admin-checkbox-settings.php:98
325
- #: ../includes/views/pages/admin-checkbox-settings.php:103
326
- #: ../includes/views/tabs/admin-forms-general-settings.php:58
327
- #: ../includes/views/tabs/admin-forms-general-settings.php:69
328
- #: ../includes/views/tabs/admin-forms-general-settings.php:79
329
- #: ../includes/views/tabs/admin-forms-general-settings.php:90
330
- #: ../includes/views/tabs/admin-forms-general-settings.php:104
331
- #: ../includes/views/tabs/admin-forms-general-settings.php:109
332
- msgid "Yes"
333
- msgstr "Ja"
334
-
335
- #: ../includes/integrations/class-cf7.php:44
336
- #: ../includes/views/metaboxes/optional-form-settings.php:18
337
- #: ../includes/views/metaboxes/optional-form-settings.php:32
338
- #: ../includes/views/metaboxes/optional-form-settings.php:46
339
- #: ../includes/views/metaboxes/optional-form-settings.php:60
340
- #: ../includes/views/metaboxes/optional-form-settings.php:77
341
- #: ../includes/views/metaboxes/optional-form-settings.php:89
342
- #: ../includes/views/metaboxes/optional-form-settings.php:107
343
- #: ../includes/views/pages/admin-checkbox-settings.php:52
344
- #: ../includes/views/pages/admin-checkbox-settings.php:62
345
- #: ../includes/views/pages/admin-checkbox-settings.php:98
346
- #: ../includes/views/pages/admin-checkbox-settings.php:103
347
- #: ../includes/views/tabs/admin-forms-general-settings.php:22
348
- #: ../includes/views/tabs/admin-forms-general-settings.php:60
349
- #: ../includes/views/tabs/admin-forms-general-settings.php:71
350
- #: ../includes/views/tabs/admin-forms-general-settings.php:81
351
- #: ../includes/views/tabs/admin-forms-general-settings.php:92
352
- #: ../includes/views/tabs/admin-forms-general-settings.php:104
353
- #: ../includes/views/tabs/admin-forms-general-settings.php:109
354
- msgid "No"
355
- msgstr "Nee"
356
-
357
- #: ../includes/library/license-manager/class-license-manager.php:158
358
- #, php-format
359
- msgid ""
360
- "<b>Warning!</b> You're blocking external requests which means you won't be "
361
- "able to get %s updates. Please add %s to %s."
362
- msgstr ""
363
- "<b>Waarschuwing!</b> Je blokkeert externe requests wat betekent dat je geen "
364
- "updates voor %s kunt ontvangen. Voeg aub %s toe aan %s."
365
-
366
- #: ../includes/library/license-manager/class-license-manager.php:201
367
- #, php-format
368
- msgid "Your %s license has been activated. You have an unlimited license. "
369
- msgstr "Je %s licentie is geactiveerd. Je hebt een ongelimiteerde licentie"
370
-
371
- #: ../includes/library/license-manager/class-license-manager.php:203
372
- #, php-format
373
- msgid "Your %s license has been activated. You have used %d/%d activations. "
374
- msgstr "Je %s licentie is geactiveerd. Je hebt %d/%d activaties gebruikt."
375
-
376
- #: ../includes/library/license-manager/class-license-manager.php:208
377
- #, php-format
378
- msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
379
- msgstr "<a href=\"%s\">Wist je dat je je licentie kon upgraden?</a>"
380
-
381
- #: ../includes/library/license-manager/class-license-manager.php:212
382
- #, php-format
383
- msgid ""
384
- "<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
385
- "it?</a>"
386
- msgstr ""
387
- "<a href=\"%s\">Je licentie verloopt in %d dagen, wil je deze verlengen?</a>"
388
-
389
- #: ../includes/library/license-manager/class-license-manager.php:221
390
- #, php-format
391
- msgid ""
392
- "You've reached your activation limit. You must <a href=\"%s\">upgrade your "
393
- "license</a> to use it on this site."
394
- msgstr ""
395
- "Je zit aan je activatie limiet. Je moet je <a href=\"%s\">licentie upgraden</"
396
- "a> om deze op deze website te kunnen gebruiken."
397
-
398
- #: ../includes/library/license-manager/class-license-manager.php:224
399
- #, php-format
400
- msgid ""
401
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in "
402
- "order to use it again."
403
- msgstr ""
404
- "Je licentie is verlopen. Je moet je <a href=\"%s\">licentie verlengen</a> om "
405
- "deze weer te kunnen gebruiken."
406
-
407
- #: ../includes/library/license-manager/class-license-manager.php:227
408
- msgid "Failed to activate your license, your license key seems to be invalid."
409
- msgstr "Je licentie lijkt invalide te zijn."
410
-
411
- #: ../includes/library/license-manager/class-license-manager.php:251
412
- #, php-format
413
- msgid "Your %s license has been deactivated."
414
- msgstr "Je %s licentie is gedeactiveerd."
415
-
416
- #: ../includes/library/license-manager/class-license-manager.php:253
417
- #, php-format
418
- msgid "Failed to deactivate your %s license."
419
- msgstr "Het is niet gelukt je %s licentie te deactiveren."
420
-
421
- #: ../includes/library/license-manager/class-license-manager.php:289
422
- #, php-format
423
- msgid "Request error: \"%s\""
424
- msgstr "Request fout: \"%s\""
425
-
426
- #: ../includes/library/license-manager/class-license-manager.php:447
427
- #, php-format
428
- msgid "%s: License Settings"
429
- msgstr "%s: Licentie Instellingen"
430
-
431
- #: ../includes/library/license-manager/class-plugin-license-manager.php:67
432
- #, php-format
433
- msgid ""
434
- "%s is network activated, please contact your site administrator to manage "
435
- "the license."
436
- msgstr ""
437
- "%s is netwerk-geactiveerd. Neem aub contact op met je site admin om je "
438
- "licentie te beheren."
439
-
440
- #: ../includes/library/license-manager/class-update-manager.php:69
441
- #, php-format
442
- msgid ""
443
- "%s failed to check for updates because of the following error: <em>%s</em>"
444
- msgstr ""
445
- "Het lukte %s niet om voor updates te checken door de volgende fout: <em>%s</"
446
- "em>"
447
-
448
- #: ../includes/library/license-manager/class-update-manager.php:138
449
- msgid ""
450
- "This site has not been activated properly on dannyvankooten.com and thus "
451
- "cannot check for future updates. Please activate your site with a valid "
452
- "license key."
453
- msgstr ""
454
- "De licentie voor deze website is niet correct geactiveerd op dannyvankooten."
455
- "com en kan daarom geen updates ontvangen. Activeer aub je website met een "
456
- "geldige licentie."
457
-
458
- #: ../includes/library/license-manager/views/form.php:23
459
- msgid "License status"
460
- msgstr "Licentie status"
461
-
462
- #: ../includes/library/license-manager/views/form.php:33
463
- msgid "Toggle license status"
464
- msgstr "Activeer/deactiveer licentie status"
465
-
466
- #: ../includes/library/license-manager/views/form.php:38
467
- msgid ""
468
- "(deactivate your license so you can activate it on another WordPress site)"
469
- msgstr ""
470
- "(deactiveer je licentie zodat je deze op een andere website kunt activeren)"
471
-
472
- #: ../includes/library/license-manager/views/form.php:44
473
- msgid "Please enter a license key in the field below first."
474
- msgstr "Vul aub een licentiecode in het veld hieronder in."
475
-
476
- #: ../includes/library/license-manager/views/form.php:52
477
- msgid "License Key"
478
- msgstr "Licentiecode"
479
-
480
- #: ../includes/library/license-manager/views/form.php:54
481
- #, fuzzy
482
- msgid "Paste your license key here, as found in the email receipt."
483
- msgstr "Plak je %s licentie hier.."
484
-
485
- #: ../includes/library/license-manager/views/form.php:56
486
- #, php-format
487
- msgid "You defined your license key using the %s PHP constant."
488
- msgstr ""
489
- "Je hebt je licentiecode gedefinieerd met behulp van de PHP constante %s."
490
 
491
- #: ../includes/library/license-manager/views/form.php:73
492
- #, php-format
493
  msgid "Your %s license will expire on %s."
494
  msgstr "Je %s licentie verloopt op %s."
495
 
496
- #: ../includes/library/license-manager/views/form.php:76
497
- #, php-format
498
  msgid "%sRenew your license now%s."
499
  msgstr "%sVernieuw je licentie nu%s"
500
 
501
- #: ../includes/tables/class-forms-table.php:19
502
- #: ../includes/tables/class-forms-table.php:36
503
- #: ../includes/tables/class-log-table.php:207
504
- msgid "Form"
505
- msgstr "Formulier"
506
-
507
- #: ../includes/tables/class-forms-table.php:35
508
  msgid "ID"
509
  msgstr "ID"
510
 
511
- #: ../includes/tables/class-forms-table.php:37
 
 
 
 
 
 
512
  msgid "Shortcode"
513
  msgstr "Shortcode"
514
 
515
- #: ../includes/tables/class-forms-table.php:38
516
  msgid "List(s)"
517
  msgstr "Lijst(en)"
518
 
519
- #: ../includes/tables/class-forms-table.php:39
520
  msgid "Last edited"
521
  msgstr "Laatst gewijzigd"
522
 
523
- #: ../includes/tables/class-forms-table.php:76
524
- #: ../includes/tables/class-forms-table.php:80
525
- #, fuzzy
526
  msgid "Edit Form"
527
- msgstr "Formulier updaten"
528
 
529
- #: ../includes/tables/class-forms-table.php:77
530
  msgid "Delete"
531
  msgstr "Verwijder"
532
 
533
- #: ../includes/tables/class-forms-table.php:98
534
  msgid "No MailChimp list(s) selected yet."
535
  msgstr "Geen MailChimp lijst(en) geselecteerd."
536
 
537
- #: ../includes/tables/class-forms-table.php:105
538
  msgid "You have not created any sign-up forms yet. Time to do so!"
539
  msgstr "Je hebt nog geen inschrijfformulieren gemaakt. Ga 'ns wat doen!"
540
 
541
- #: ../includes/tables/class-log-table.php:33
542
  msgid "Subscriber"
543
  msgstr "Subscriber"
544
 
545
- #: ../includes/tables/class-log-table.php:34
546
  msgid "Subscribers"
547
  msgstr "Subscribers"
548
 
549
- #: ../includes/tables/class-log-table.php:53
550
  msgid "Email"
551
  msgstr "Emailadres"
552
 
553
- #: ../includes/tables/class-log-table.php:54
554
  msgid "List"
555
  msgstr "Lijst"
556
 
557
- #: ../includes/tables/class-log-table.php:55
558
  msgid "Type"
559
  msgstr "Type"
560
 
561
- #: ../includes/tables/class-log-table.php:56
562
  msgid "Source"
563
  msgstr "Bron"
564
 
565
- #: ../includes/tables/class-log-table.php:57
566
  msgid "Extra data"
567
  msgstr "Extra data"
568
 
569
- #: ../includes/tables/class-log-table.php:58
570
  msgid "Subscribed"
571
  msgstr "Ingeschreven"
572
 
573
- #: ../includes/tables/class-log-table.php:192
574
- #: ../includes/tables/class-log-table.php:196
575
- #, fuzzy
576
  msgid "Comment"
577
- msgstr "Reactieformulier"
578
 
579
- #: ../includes/tables/class-log-table.php:192
580
  msgid "deleted"
581
  msgstr "verwijderd"
582
 
583
- #: ../includes/tables/class-log-table.php:200
584
- #, fuzzy
585
  msgid "Registration"
586
- msgstr "Registratieformulier"
587
 
588
- #: ../includes/tables/class-log-table.php:216
589
- #, fuzzy
590
  msgid "MultiSite registration"
591
- msgstr "BuddyPress registratie"
592
 
593
- #: ../includes/tables/class-log-table.php:220
594
- #: ../includes/tables/class-log-table.php:224
595
- #, fuzzy
596
  msgid "Checkout"
597
- msgstr "%s checkout"
598
 
599
- #: ../includes/tables/class-log-table.php:229
600
  msgid "Contact Form 7"
601
  msgstr "Contact Form 7"
602
 
603
- #: ../includes/tables/class-log-table.php:233
604
  msgid "bbPress: New Topic"
605
  msgstr "bbPress: Nieuw Onderwerp"
606
 
607
- #: ../includes/tables/class-log-table.php:237
608
  msgid "bbPress: New Reply"
609
  msgstr "bbPress: Nieuwe Reactie"
610
 
611
- #: ../includes/tables/class-log-table.php:243
612
- #, fuzzy
613
  msgid "Other Form"
614
- msgstr "Formulier updaten"
615
 
616
- #: ../includes/tables/class-log-table.php:283
617
  msgid "No subscribe requests found."
618
  msgstr "Geen inschrijfverzoeken gevonden."
619
 
620
- #: ../includes/views/metaboxes/optional-form-settings.php:8
621
- #, php-format
622
- msgid ""
623
- "Any settings you specify here will override the <a href=\"%s\">general form "
624
- "settings</a>. If no setting is specified, the corresponding general setting "
625
- "value will be used."
626
- msgstr ""
627
- "Instellingen die je ingeeft zullen de <a href=\"%s\">standaard formulier "
628
- "instellingen</a> overschrijven. Wanneer je hier niets invult zal de "
629
- "corresponderende standaardwaarde gebruikt worden."
 
630
 
631
- #: ../includes/views/metaboxes/optional-form-settings.php:10
632
  msgid "MailChimp Settings"
633
  msgstr "MailChimp Instellingen"
634
 
635
- #: ../includes/views/metaboxes/optional-form-settings.php:13
636
- #: ../includes/views/pages/admin-checkbox-settings.php:51
637
- #: ../includes/views/tabs/admin-forms-general-settings.php:55
638
  msgid "Double opt-in?"
639
  msgstr "Emailadres bevestigen?"
640
 
641
- #: ../includes/views/metaboxes/optional-form-settings.php:20
642
- #: ../includes/views/metaboxes/optional-form-settings.php:34
643
- #: ../includes/views/metaboxes/optional-form-settings.php:48
644
- #: ../includes/views/metaboxes/optional-form-settings.php:62
645
- #: ../includes/views/metaboxes/optional-form-settings.php:79
646
- #: ../includes/views/metaboxes/optional-form-settings.php:91
647
  msgid "Inherit"
648
  msgstr "Gebruik standaardwaarde"
649
 
650
- #: ../includes/views/metaboxes/optional-form-settings.php:22
651
- #: ../includes/views/pages/admin-checkbox-settings.php:53
652
- #: ../includes/views/tabs/admin-forms-general-settings.php:62
653
- msgid ""
654
- "Select \"yes\" if you want people to confirm their email address before "
655
- "being subscribed (recommended)"
656
- msgstr ""
657
- "Selecteer \"ja\" wanneer je wilt dat mensen hun emailadres moeten bevestigen "
658
- "alvorens ze aan je MailChimp lijst worden toegevoegd (aanbevolen)"
659
 
660
- #: ../includes/views/metaboxes/optional-form-settings.php:27
661
- #: ../includes/views/tabs/admin-forms-general-settings.php:76
662
  msgid "Update existing subscribers?"
663
  msgstr "Bestaande inschrijven updaten?"
664
 
665
- #: ../includes/views/metaboxes/optional-form-settings.php:36
666
- #: ../includes/views/tabs/admin-forms-general-settings.php:83
667
- msgid ""
668
- "Select \"yes\" if you want to update existing subscribers (instead of "
669
- "showing the \"already subscribed\" message)."
670
- msgstr ""
671
- "Selecteer \"ja\" wanneer je bestaande abonnees wilt updaten (in plaats van "
672
- "het tonen van de \"reeds ingeschreven\" melding)"
673
 
674
- #: ../includes/views/metaboxes/optional-form-settings.php:41
675
- #: ../includes/views/tabs/admin-forms-general-settings.php:87
676
  msgid "Replace interest groups?"
677
  msgstr "Interessegroepen vervangen?"
678
 
679
- #: ../includes/views/metaboxes/optional-form-settings.php:50
680
- #: ../includes/views/tabs/admin-forms-general-settings.php:94
681
- msgid ""
682
- "Select \"yes\" if you want to replace the interest groups with the groups "
683
- "provided instead of adding the provided groups to the member's interest "
684
- "groups (only when updating a subscriber)."
685
- msgstr ""
686
- "Selecteer \"ja\" wanneer je interest groups wilt verplaatsen met de "
687
- "verstuurde groepen in plaats van deze aan de bestaande groepen toe te voegen "
688
- "(enkel bij het updaten van abonnees)."
689
 
690
- #: ../includes/views/metaboxes/optional-form-settings.php:55
691
- #: ../includes/views/pages/admin-checkbox-settings.php:57
692
- #: ../includes/views/tabs/admin-forms-general-settings.php:66
693
  msgid "Send Welcome Email?"
694
  msgstr "Welkomstemail versturen?"
695
 
696
- #: ../includes/views/metaboxes/optional-form-settings.php:64
697
- #: ../includes/views/pages/admin-checkbox-settings.php:64
698
- #: ../includes/views/tabs/admin-forms-general-settings.php:73
699
- msgid ""
700
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
701
- "succeeds (only when double opt-in is disabled)."
702
- msgstr ""
703
- "Selecteer \"ja\" als je de \"Welcome Email\" wilt sturen naar nieuwe "
704
- "abonnees (enkel wanneer \"double opt-in\" uitgeschakeld is)"
705
-
706
- #: ../includes/views/metaboxes/optional-form-settings.php:69
707
- msgid "Form Settings & Messages"
708
- msgstr "Form Instellingen & Meldingen"
709
 
710
- #: ../includes/views/metaboxes/optional-form-settings.php:72
711
- #: ../includes/views/tabs/admin-forms-general-settings.php:103
712
  msgid "Enable AJAX form submission?"
713
  msgstr "AJAX (JavaScript) formulieren gebruiken?"
714
 
715
- #: ../includes/views/metaboxes/optional-form-settings.php:80
716
- #: ../includes/views/tabs/admin-forms-general-settings.php:105
717
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
718
- msgstr ""
719
- "Selecteer \"ja\" wanneer je AJAX (JavaScript) wilt gebruiken voor het "
720
- "verzenden van formulieren."
721
 
722
- #: ../includes/views/metaboxes/optional-form-settings.php:84
723
- #: ../includes/views/tabs/admin-forms-general-settings.php:108
724
  msgid "Hide form after a successful sign-up?"
725
  msgstr "Verberg formulier na succesvolle inschrijvingen?"
726
 
727
- #: ../includes/views/metaboxes/optional-form-settings.php:93
728
- #: ../includes/views/tabs/admin-forms-general-settings.php:110
729
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
730
- msgstr ""
731
- "Selecteer \"ja\" om de formuliervelden te verbergen na elke succesvolle "
732
- "inschrijving."
733
 
734
- #: ../includes/views/metaboxes/optional-form-settings.php:97
735
- #: ../includes/views/tabs/admin-forms-general-settings.php:113
736
  msgid "Redirect to URL after successful sign-ups"
737
  msgstr "Doorsturen naar URL na succesvolle inschrijving"
738
 
739
- #: ../includes/views/metaboxes/optional-form-settings.php:100
740
- #: ../includes/views/tabs/admin-forms-general-settings.php:116
741
- msgid ""
742
- "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
743
- "including <code>http://</code>"
744
- msgstr ""
745
- "Laat leeg (of geef 0 in) voor geen doorverwijzing. Gebruik complete "
746
- "(absolute) URLs, inclusief <code>http://</code>"
747
 
748
- #: ../includes/views/metaboxes/optional-form-settings.php:104
749
  msgid "Send an email copy of the form data?"
750
  msgstr "Verzend een email kopie van de ingevulde data?"
751
 
752
- #: ../includes/views/metaboxes/optional-form-settings.php:108
753
- msgid ""
754
- "Tick \"yes\" if you want to receive an email with the form data for every "
755
- "sign-up request."
756
- msgstr ""
757
- "Selecteer \"ja\" als je een email wilt ontvangen met de ingevulde data voor "
758
- "elke inschrijving."
759
 
760
- #: ../includes/views/metaboxes/optional-form-settings.php:111
761
  msgid "Send the copy to this email:"
762
  msgstr "Verzend de kopie naar dit emailadres:"
763
 
764
- #: ../includes/views/metaboxes/optional-form-settings.php:117
765
- #: ../includes/views/tabs/admin-forms-general-settings.php:119
766
- msgid "Success message"
767
- msgstr "Succesmelding"
768
 
769
- #: ../includes/views/metaboxes/optional-form-settings.php:121
770
- #: ../includes/views/tabs/admin-forms-general-settings.php:124
771
- msgid "Invalid email address message"
772
- msgstr "Foutief emailadres"
773
 
774
- #: ../includes/views/metaboxes/optional-form-settings.php:125
775
- #: ../includes/views/tabs/admin-forms-general-settings.php:128
776
- #, fuzzy
777
- msgid "Required field missing message"
778
- msgstr "Verplicht veld?"
 
 
 
 
779
 
780
- #: ../includes/views/metaboxes/optional-form-settings.php:129
781
- #: ../includes/views/tabs/admin-forms-general-settings.php:132
782
- msgid "Already subscribed message"
783
  msgstr "Reeds ingeschreven"
784
 
785
- #: ../includes/views/metaboxes/optional-form-settings.php:134
786
- #: ../includes/views/tabs/admin-forms-general-settings.php:138
787
- msgid "Invalid CAPTCHA message"
788
- msgstr "Foutieve CAPTCHA melding"
789
 
790
- #: ../includes/views/metaboxes/optional-form-settings.php:139
791
- #: ../includes/views/tabs/admin-forms-general-settings.php:143
792
- msgid "General error message"
793
- msgstr "Foutmelding"
794
 
795
- #: ../includes/views/metaboxes/optional-form-settings.php:145
796
- #: ../includes/views/tabs/admin-forms-general-settings.php:148
797
- #, php-format
798
  msgid "HTML tags like %s are allowed in the message fields."
799
  msgstr "HTML tags als %s zijn toegestaan in de meldingteksten."
800
 
801
- #: ../includes/views/metaboxes/required-form-settings.php:14
802
  msgid "Lists this form subscribes to"
803
  msgstr "Lijsten op welke dit formulier inschrijft"
804
 
805
- #: ../includes/views/metaboxes/required-form-settings.php:17
806
- #: ../includes/views/pages/admin-checkbox-settings.php:38
807
- #, php-format
808
  msgid "No lists found, %sare you connected to MailChimp?%s"
809
  msgstr "Geen lijsten gevonden. %sBen je verbonden met MailChimp?%s"
810
 
811
- #: ../includes/views/metaboxes/required-form-settings.php:29
812
  msgid "Add a new field"
813
  msgstr "Voeg een nieuw veld toe"
814
 
815
- #: ../includes/views/metaboxes/required-form-settings.php:32
816
  msgid "Select MailChimp field.."
817
  msgstr "Selecteer MailChimp veld.."
818
 
819
- #: ../includes/views/metaboxes/required-form-settings.php:36
820
  msgid "Submit Button"
821
  msgstr "Verzendknop"
822
 
823
- #: ../includes/views/metaboxes/required-form-settings.php:37
824
  msgid "Lists Choice"
825
  msgstr "Lijstkeuze"
826
 
827
- #: ../includes/views/metaboxes/required-form-settings.php:45
828
  msgid "Label"
829
  msgstr "Label"
830
 
831
- #: ../includes/views/metaboxes/required-form-settings.php:45
832
- #: ../includes/views/metaboxes/required-form-settings.php:50
833
- #: ../includes/views/metaboxes/required-form-settings.php:55
834
  msgid "(optional)"
835
  msgstr "(optioneel)"
836
 
837
- #: ../includes/views/metaboxes/required-form-settings.php:50
838
  msgid "Placeholder"
839
  msgstr "Placeholder"
840
 
841
- #: ../includes/views/metaboxes/required-form-settings.php:55
842
  msgid "Initial value"
843
  msgstr "Initiële waarde"
844
 
845
- #: ../includes/views/metaboxes/required-form-settings.php:60
846
  msgid "Labels"
847
  msgstr "Labels"
848
 
849
- #: ../includes/views/metaboxes/required-form-settings.php:60
850
  msgid "(leave empty to hide)"
851
  msgstr "(laat leeg om te verbergen)"
852
 
853
- #: ../includes/views/metaboxes/required-form-settings.php:65
854
- #, php-format
855
  msgid "Wrap in paragraph %s tags?"
856
  msgstr "Wrap in paragraaf %s tags?"
857
 
858
- #: ../includes/views/metaboxes/required-form-settings.php:69
859
  msgid "Required field?"
860
  msgstr "Verplicht veld?"
861
 
862
- #: ../includes/views/metaboxes/required-form-settings.php:73
863
  msgid "Add to form"
864
  msgstr "Voeg toe aan formulier"
865
 
866
- #: ../includes/views/metaboxes/required-form-settings.php:77
867
  msgid "Generated HTML"
868
  msgstr "Gegenereerde HTML"
869
 
870
- #: ../includes/views/metaboxes/required-form-settings.php:86
871
  msgid "Form usage"
872
  msgstr "Formulier gebruik"
873
 
874
- #: ../includes/views/metaboxes/required-form-settings.php:87
875
- #, php-format
876
- msgid ""
877
- "Use the shortcode %s to display this form inside a post, page or text widget."
878
- msgstr ""
879
- "Gebruik de %s shortcode om dit formulier in een post, pagina of tekst widget "
880
- "te tonen."
881
 
882
- #: ../includes/views/pages/admin-checkbox-settings.php:11
883
- #: ../includes/views/pages/admin-form-settings.php:10
884
- #: ../includes/views/pages/admin-general-settings.php:10
885
- #: ../includes/views/pages/admin-reports.php:10
886
  msgid "MailChimp for WordPress"
887
  msgstr "MailChimp voor WordPress"
888
 
889
- #: ../includes/views/pages/admin-checkbox-settings.php:11
890
  msgid "Checkbox Settings"
891
  msgstr "Checkbox Instellingen"
892
 
893
- #: ../includes/views/pages/admin-checkbox-settings.php:14
894
- msgid ""
895
- "To use sign-up checkboxes, select at least one list and one form to add the "
896
- "checkbox to."
897
- msgstr ""
898
- "Selecteer ten minste 1 MailChimp lijst en 1 formulier om de checkbox aan toe "
899
- "te voegen om inschrijf checkboxes te gebruiken."
900
 
901
- #: ../includes/views/pages/admin-checkbox-settings.php:21
902
  msgid "MailChimp settings for checkboxes"
903
  msgstr "MailChimp instellingen voor checkboxes"
904
 
905
- #: ../includes/views/pages/admin-checkbox-settings.php:26
906
- msgid ""
907
- "If you want to use sign-up checkboxes, select at least one MailChimp list to "
908
- "subscribe people to."
909
- msgstr ""
910
- "Selecteer ten minste 1 MailChimp lijst waar mensen aan toegevoegd moeten "
911
- "worden."
912
 
913
- #: ../includes/views/pages/admin-checkbox-settings.php:34
914
  msgid "MailChimp Lists"
915
  msgstr "MailChimp Lijsten"
916
 
917
- #: ../includes/views/pages/admin-checkbox-settings.php:45
918
- msgid ""
919
- "Select the list(s) to which people who check the checkbox should be "
920
- "subscribed."
921
- msgstr ""
922
- "Selecteer de lijsten aan welke mensen die checkbox aanvinken toegevoegd "
923
- "zouden moeten worden."
924
 
925
- #: ../includes/views/pages/admin-checkbox-settings.php:68
926
  msgid "Checkbox settings"
927
  msgstr "Checkbox instellingen"
928
 
929
- #: ../includes/views/pages/admin-checkbox-settings.php:71
930
  msgid "Add the checkbox to these forms"
931
  msgstr "Voeg de checkbox toe aan de volgende formulieren"
932
 
933
- #: ../includes/views/pages/admin-checkbox-settings.php:78
934
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
935
- msgstr ""
936
- "Aan de formulieren die je hier selecteert wordt automatisch een \"schrijf je "
937
- "in\" checkbox toegevoegd."
938
 
939
- #: ../includes/views/pages/admin-checkbox-settings.php:85
940
- #, php-format
941
- msgid ""
942
- "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
943
- "forms.</p>"
944
- msgstr ""
945
- "Gebruik %s in je Contact Form 7 mark-up om een inschrijf checkbox aan je CF7 "
946
- "formulieren toe te voegen."
947
 
948
- #: ../includes/views/pages/admin-checkbox-settings.php:90
949
  msgid "Checkbox label text"
950
  msgstr "Checkbox label tekst"
951
 
952
- #: ../includes/views/pages/admin-checkbox-settings.php:93
953
- #: ../includes/views/pages/admin-checkbox-settings.php:123
954
- #, php-format
955
  msgid "HTML tags like %s are allowed in the label text."
956
  msgstr "HTML tags als %s zijn toegestaan in de label tekst."
957
 
958
- #: ../includes/views/pages/admin-checkbox-settings.php:97
959
  msgid "Pre-check the checkbox?"
960
  msgstr "Vink de checkbox standaard aan?"
961
 
962
- #: ../includes/views/pages/admin-checkbox-settings.php:102
963
  msgid "Load some default CSS?"
964
  msgstr "Laad standaard CSS?"
965
 
966
- #: ../includes/views/pages/admin-checkbox-settings.php:104
967
  msgid "Select \"yes\" if the checkbox appears in a weird place."
968
  msgstr "Selecteer \"ja\" als de checkbox op een vreemde plaats verschijnt."
969
 
970
- #: ../includes/views/pages/admin-checkbox-settings.php:108
971
- #: ../includes/views/pages/admin-checkbox-settings.php:128
972
- #: ../includes/views/tabs/admin-forms-general-settings.php:48
973
- #: ../includes/views/tabs/admin-forms-general-settings.php:152
974
- msgid "Save all changes"
975
- msgstr "Alle wijzigingen opslaan"
 
 
 
 
 
 
 
 
 
976
 
977
- #: ../includes/views/pages/admin-checkbox-settings.php:111
978
  msgid "Custom label texts"
979
  msgstr "Custom label teksten"
980
 
981
- #: ../includes/views/pages/admin-checkbox-settings.php:112
982
- msgid ""
983
- "Override the default checkbox label text for any given checkbox using the "
984
- "fields below."
985
- msgstr ""
986
- "Overschrijf de standaard checkbox label voor de verschillende checkboxes met "
987
- "behulp van onderstaande velden."
988
 
989
- #: ../includes/views/pages/admin-form-settings.php:13
990
  msgid "Forms & Settings"
991
  msgstr "Formulieren & Instellingen"
992
 
993
- #: ../includes/views/pages/admin-form-settings.php:14
994
  msgid "CSS Styles Builder"
995
  msgstr "CSS Stijl Bouwer"
996
 
997
- #: ../includes/views/pages/admin-general-settings.php:10
998
  msgid "License & API Settings"
999
  msgstr "Licentie & API Instellingen"
1000
 
1001
- #: ../includes/views/pages/admin-general-settings.php:19
1002
  msgid "API Settings"
1003
  msgstr "API Instellingen"
1004
 
1005
- #: ../includes/views/pages/admin-general-settings.php:21
1006
  msgid "CONNECTED"
1007
  msgstr "VERBONDEN"
1008
 
1009
- #: ../includes/views/pages/admin-general-settings.php:23
1010
  msgid "NOT CONNECTED"
1011
  msgstr "NIET VERBONDEN"
1012
 
1013
- #: ../includes/views/pages/admin-general-settings.php:29
1014
  msgid "API Key"
1015
  msgstr "API Sleutel"
1016
 
1017
- #: ../includes/views/pages/admin-general-settings.php:31
1018
  msgid "Your MailChimp API key"
1019
  msgstr "Je MailChimp API sleutel"
1020
 
1021
- #: ../includes/views/pages/admin-general-settings.php:32
1022
  msgid "Get your API key here."
1023
  msgstr "Verkrijg hier je API sleutel."
1024
 
1025
- #: ../includes/views/pages/admin-general-settings.php:48
1026
  msgid "MailChimp Data"
1027
  msgstr "MailChimp Data"
1028
 
1029
- #: ../includes/views/pages/admin-general-settings.php:49
1030
- msgid ""
1031
- "The table below shows your MailChimp lists data. If you applied changes to "
1032
- "your MailChimp lists, please use the following button to renew your cached "
1033
- "data."
1034
- msgstr ""
1035
- "The tabel hieronder toont je MailChimp lijst configuratie. Wanneer je hier "
1036
- "veranderingen aan hebt doorgevoerd die nog niet weergegeven worden kun je de "
1037
- "volgende button gebruiken om je configuratie opnieuw in te laden."
1038
 
1039
- #: ../includes/views/pages/admin-general-settings.php:55
1040
- #: ../includes/views/pages/admin-general-settings.php:126
1041
  msgid "Renew MailChimp lists"
1042
  msgstr "Vernieuw MailChimp lijsten"
1043
 
1044
- #: ../includes/views/pages/admin-general-settings.php:113
1045
  msgid "No lists were found in your MailChimp account."
1046
  msgstr "Er zijn geen lijsten gevonden in je MailChimp account."
1047
 
1048
- #: ../includes/views/pages/admin-reports.php:14
1049
  msgid "Statistics"
1050
  msgstr "Statistieken"
1051
 
1052
- #: ../includes/views/pages/admin-reports.php:15
1053
  msgid "Log"
1054
  msgstr "Log"
1055
 
1056
- #: ../includes/views/parts/admin-footer.php:9
1057
- #, php-format
1058
- msgid ""
1059
- "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1060
- "email me directly at <a href=\"%s\">support@dannyvankooten.com</a>."
1061
- msgstr ""
1062
- "Hulp nodig? Doorzoek de <a href=\"%s\">plugin documentatie</a> of email me "
1063
- "rechtstreeks op <a href=\"%s\">support@dannyvankooten.com</a>."
1064
 
1065
- #: ../includes/views/parts/admin-text-variables.php:13
1066
  msgid "Replaced with the form response (error or success messages)."
1067
  msgstr "Wordt vervangen door de formulier response (fout- en succesmeldingen)."
1068
 
1069
- #: ../includes/views/parts/admin-text-variables.php:18
1070
  msgid "Replaced with a captcha field."
1071
  msgstr "Wordt vervangen door een Captcha veld."
1072
 
1073
- #: ../includes/views/parts/admin-text-variables.php:23
1074
  msgid "Replaced with the number of subscribers on the selected list(s)"
1075
  msgstr "Vervangen door het aantal subscribers op de geselecteerde lijst(en)"
1076
 
1077
- #: ../includes/views/parts/admin-text-variables.php:27
1078
- #, fuzzy, php-format
1079
  msgid "Replaced with the current site language, eg: %s"
1080
- msgstr "Vervangen door de huidige tijd (uu:mm:ss bijv: %s)"
1081
 
1082
- #: ../includes/views/parts/admin-text-variables.php:31
1083
  msgid "Replaced with the visitor's IP address"
1084
  msgstr "Vervangen door het IP-adres van de bezoeker"
1085
 
1086
- #: ../includes/views/parts/admin-text-variables.php:35
1087
- #, php-format
1088
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
1089
  msgstr "Vervangen door de huidige datum (jjjj/mm/dd bijv: %s)"
1090
 
1091
- #: ../includes/views/parts/admin-text-variables.php:39
1092
- #, php-format
1093
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
1094
  msgstr "Vervangen door de huidige tijd (uu:mm:ss bijv: %s)"
1095
 
1096
- #: ../includes/views/parts/admin-text-variables.php:43
1097
- msgid ""
1098
- "Replaced with the logged in user's email (or nothing, if there is no logged "
1099
- "in user)"
1100
- msgstr ""
1101
- "Vervangen door het emailadres van de ingelogde gebruiker (of niets wanneer "
1102
- "de bezoeker niet ingelogd is)"
1103
 
1104
- #: ../includes/views/parts/admin-text-variables.php:47
1105
  msgid "First name of the current user"
1106
  msgstr "Voornaam van de ingelogde bezoeker"
1107
 
1108
- #: ../includes/views/parts/admin-text-variables.php:51
1109
  msgid "Last name of the current user"
1110
  msgstr "Achternaam van de ingelogde bezoeker"
1111
 
1112
- #: ../includes/views/parts/admin-text-variables.php:55
1113
  msgid "Current user ID"
1114
  msgstr "ID van de ingelogde bezoeker"
1115
 
1116
- #: ../includes/views/parts/admin-text-variables.php:59
1117
  msgid "Current URL"
1118
  msgstr "Huidige URL"
1119
 
1120
- #: ../includes/views/tabs/admin-forms-css-builder.php:10
1121
  msgid "Use the fields below to create custom styling rules for your forms."
1122
- msgstr ""
1123
- "Gebruik de onderstaande velden om custom stijlregels op te stellen voor je "
1124
- "formulieren."
1125
 
1126
- #: ../includes/views/tabs/admin-forms-css-builder.php:214
1127
- msgid "Build CSS File"
1128
- msgstr "Genereer CSS Stylesheet"
1129
 
1130
- #: ../includes/views/tabs/admin-forms-css-builder.php:230
1131
- #, php-format
1132
- msgid "Please <a href=\"%s\">create at least 1 form</a> first."
1133
- msgstr "<a href=\"%s\">Maak eerst ten minste 1 formulier</a>."
1134
 
1135
- #: ../includes/views/tabs/admin-forms-css-builder.php:232
1136
- #, fuzzy
1137
- msgid "Select form for preview"
1138
- msgstr "Selecteer het formulier om te tonen"
 
 
 
 
 
 
 
 
 
 
 
1139
 
1140
- #: ../includes/views/tabs/admin-forms-general-settings.php:8
 
 
 
 
1141
  msgid "Sign-Up Forms"
1142
  msgstr "MailChimp inschrijfformulieren"
1143
 
1144
- #: ../includes/views/tabs/admin-forms-general-settings.php:8
1145
  msgid "Create New Form"
1146
  msgstr "Maak Nieuw Formulier"
1147
 
1148
- #: ../includes/views/tabs/admin-forms-general-settings.php:16
1149
  msgid "General form settings"
1150
  msgstr "Algemene formulier instellingen"
1151
 
1152
- #: ../includes/views/tabs/admin-forms-general-settings.php:19
1153
  msgid "Load form styles (CSS)?"
1154
  msgstr "Laad formulier stijlen (CSS)?"
1155
 
1156
- #: ../includes/views/tabs/admin-forms-general-settings.php:23
1157
  msgid "Yes, load basic form styles"
1158
  msgstr "Ja, laad standaard formulier stijlen"
1159
 
1160
- #: ../includes/views/tabs/admin-forms-general-settings.php:24
1161
  msgid "Yes, load my custom form styles"
1162
  msgstr "Ja, laad mijn zelf ontworpen formulier stijlen"
1163
 
1164
- #: ../includes/views/tabs/admin-forms-general-settings.php:25
1165
  msgid "Yes, load default form theme"
1166
  msgstr "Ja, laad 'n standaard thema"
1167
 
1168
- #: ../includes/views/tabs/admin-forms-general-settings.php:26
1169
  msgid "Light Theme"
1170
  msgstr "Licht Thema"
1171
 
1172
- #: ../includes/views/tabs/admin-forms-general-settings.php:27
1173
  msgid "Red Theme"
1174
  msgstr "Rood Thema"
1175
 
1176
- #: ../includes/views/tabs/admin-forms-general-settings.php:28
1177
  msgid "Green Theme"
1178
  msgstr "Groen Thema"
1179
 
1180
- #: ../includes/views/tabs/admin-forms-general-settings.php:29
1181
  msgid "Blue Theme"
1182
  msgstr "Blauw Thema"
1183
 
1184
- #: ../includes/views/tabs/admin-forms-general-settings.php:30
1185
  msgid "Dark Theme"
1186
  msgstr "Donker Thema"
1187
 
1188
- #: ../includes/views/tabs/admin-forms-general-settings.php:31
1189
  msgid "Custom Color Theme"
1190
  msgstr "Aangepaste Kleur Thema"
1191
 
1192
- #: ../includes/views/tabs/admin-forms-general-settings.php:36
1193
- #, php-format
1194
- msgid ""
1195
- "If you %screated a custom stylesheet%s and want it to be loaded, select "
1196
- "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
1197
- "of the default themes."
1198
- msgstr ""
1199
- "Als je zelf een %sCSS Stylesheet%s hebt gemaakt en deze geladen wilt hebben, "
1200
- "selecteer dan \"custom formulier stijlen\". Anders, kies de standaard "
1201
- "formulier stijlen of een van de standaard thema's."
1202
 
1203
- #: ../includes/views/tabs/admin-forms-general-settings.php:40
1204
  msgid "Select Color"
1205
  msgstr "Selecteer Kleur"
1206
 
1207
- #: ../includes/views/tabs/admin-forms-general-settings.php:50
 
 
 
 
1208
  msgid "Default MailChimp settings"
1209
  msgstr "Standaard MailChimp instellingen"
1210
 
1211
- #: ../includes/views/tabs/admin-forms-general-settings.php:51
1212
- #: ../includes/views/tabs/admin-forms-general-settings.php:99
1213
- msgid ""
1214
- "The following settings apply to <strong>all</strong> forms but can be "
1215
- "overridden on a per-form basis."
1216
- msgstr ""
1217
- "De volgende instellingen gelden voor <strong>alle formulieren</strong> maar "
1218
- "kunnen 'overruled' worden per formulier."
1219
-
1220
- #: ../includes/views/tabs/admin-forms-general-settings.php:98
1221
- msgid "Default form settings"
1222
- msgstr "Standaard formulier instellingen"
1223
-
1224
- #~ msgid "General Settings"
1225
- #~ msgstr "Algemeen"
1226
-
1227
- #~ msgid ""
1228
- #~ "<strong>Admin notice:</strong> you have not yet selected a MailChimp "
1229
- #~ "list(s) for this form. <a target=\"_top\" href=\"%s\">Edit this sign-up "
1230
- #~ "form</a> and select at least one list."
1231
- #~ msgstr ""
1232
- #~ "<strong>Admin melding:</strong> je hebt nog geen MailChimp lijst(en) "
1233
- #~ "geselecteerd voor dit formulier. <a target=\"_top\" href=\"%s\">Wijzig "
1234
- #~ "dit formulier</a> en selecteer ten minste 1 lijst."
1235
-
1236
- #~ msgid ""
1237
- #~ "%s is network activated, you can manage your license in the <a href=\"%s"
1238
- #~ "\">network admin license page</a>."
1239
- #~ msgstr ""
1240
- #~ "%s is netwerk-geactiveerd. Je kunt je licenties beheren in de <a href=\"%s"
1241
- #~ "\">network admin licentie pagina</a>."
1242
-
1243
- #~ msgid "Sign-Up Form"
1244
- #~ msgstr "Inschrijfformulier"
1245
-
1246
- #~ msgid "Sign-up Forms"
1247
- #~ msgstr "MailChimp inschrijfformulieren"
1248
-
1249
- #~ msgid ""
1250
- #~ "Need help? Email me directly at <a href=\"%s\">support@dannyvankooten."
1251
- #~ "com</a>. Please include your website URL and as many details as possible."
1252
- #~ msgstr ""
1253
- #~ "Hulp nodig? Email me rechtstreeks op <a href=\"%s"
1254
- #~ "\">support@dannyvankooten.com</a>. Vermeld aub je website URL en zoveel "
1255
- #~ "mogelijk details."
1256
-
1257
- #~ msgid "Display name of the current user"
1258
- #~ msgstr "Naam van de ingelogde bezoeker"
1259
-
1260
- #, fuzzy
1261
- #~ msgid "Load styles or theme?"
1262
- #~ msgstr "Laad formulier stijlen?"
1263
-
1264
- #~ msgid "Need help? Email me directly at"
1265
- #~ msgstr "Hulp nodig? Email me op "
1266
-
1267
- #~ msgid "MailChimp cache successfully renewed."
1268
- #~ msgstr "MailChimp cache succesvol geleegd."
1269
-
1270
- #~ msgid ""
1271
- #~ "You can edit your sign-up form in the %sMailChimp for WordPress form "
1272
- #~ "settings%s."
1273
- #~ msgstr ""
1274
- #~ "Je kan je inschrijfformulier wijzigen in de %sMailChimp for WordPress "
1275
- #~ "formulier instellingen%s."
1276
-
1277
- #~ msgid ""
1278
- #~ "To use the MailChimp sign-up form, configure the form below and then "
1279
- #~ "either paste %s in the content of a post or page or use the widget."
1280
- #~ msgstr ""
1281
- #~ "Om het MailChimp inschrijfformulier te gebruiken kun je hieronder je "
1282
- #~ "formulier configureren. Vervolgens kun je de meegeleverde plugin widget "
1283
- #~ "gebruiken of %s in de inhoud van een bericht of pagina plakken."
1284
-
1285
- #~ msgid ""
1286
- #~ "Select the list(s) to which people who submit this form should be "
1287
- #~ "subscribed."
1288
- #~ msgstr ""
1289
- #~ "Selecteer de MailChimp lijsten aan welke mensen die het formulier "
1290
- #~ "invullen toegevoegd moeten worden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of MailChimp for WordPress in Dutch
2
+ # This file is distributed under the same license as the MailChimp for WordPress package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2014-09-14 13:23:35+0000\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: MailChimp for WordPress\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
+ #: includes/library/license-manager/views/form.php:73
 
14
  msgid "Your %s license will expire on %s."
15
  msgstr "Je %s licentie verloopt op %s."
16
 
17
+ #: includes/library/license-manager/views/form.php:76
 
18
  msgid "%sRenew your license now%s."
19
  msgstr "%sVernieuw je licentie nu%s"
20
 
21
+ #: includes/tables/class-forms-table.php:35
 
 
 
 
 
 
22
  msgid "ID"
23
  msgstr "ID"
24
 
25
+ #: includes/tables/class-forms-table.php:36
26
+ #: includes/tables/class-log-table.php:207
27
+ #: includes/tables/class-log-table.php:312
28
+ msgid "Form"
29
+ msgstr "Formulier"
30
+
31
+ #: includes/tables/class-forms-table.php:37
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
35
+ #: includes/tables/class-forms-table.php:38
36
  msgid "List(s)"
37
  msgstr "Lijst(en)"
38
 
39
+ #: includes/tables/class-forms-table.php:39
40
  msgid "Last edited"
41
  msgstr "Laatst gewijzigd"
42
 
43
+ #: includes/tables/class-forms-table.php:76
44
+ #: includes/tables/class-forms-table.php:80
 
45
  msgid "Edit Form"
46
+ msgstr "Wijzig Formulier"
47
 
48
+ #: includes/tables/class-forms-table.php:77
49
  msgid "Delete"
50
  msgstr "Verwijder"
51
 
52
+ #: includes/tables/class-forms-table.php:98
53
  msgid "No MailChimp list(s) selected yet."
54
  msgstr "Geen MailChimp lijst(en) geselecteerd."
55
 
56
+ #: includes/tables/class-forms-table.php:105
57
  msgid "You have not created any sign-up forms yet. Time to do so!"
58
  msgstr "Je hebt nog geen inschrijfformulieren gemaakt. Ga 'ns wat doen!"
59
 
60
+ #: includes/tables/class-log-table.php:33
61
  msgid "Subscriber"
62
  msgstr "Subscriber"
63
 
64
+ #: includes/tables/class-log-table.php:34
65
  msgid "Subscribers"
66
  msgstr "Subscribers"
67
 
68
+ #: includes/tables/class-log-table.php:53
69
  msgid "Email"
70
  msgstr "Emailadres"
71
 
72
+ #: includes/tables/class-log-table.php:54
73
  msgid "List"
74
  msgstr "Lijst"
75
 
76
+ #: includes/tables/class-log-table.php:55
77
  msgid "Type"
78
  msgstr "Type"
79
 
80
+ #: includes/tables/class-log-table.php:56
81
  msgid "Source"
82
  msgstr "Bron"
83
 
84
+ #: includes/tables/class-log-table.php:57
85
  msgid "Extra data"
86
  msgstr "Extra data"
87
 
88
+ #: includes/tables/class-log-table.php:58
89
  msgid "Subscribed"
90
  msgstr "Ingeschreven"
91
 
92
+ #: includes/tables/class-log-table.php:192
93
+ #: includes/tables/class-log-table.php:196
 
94
  msgid "Comment"
95
+ msgstr "Reactie"
96
 
97
+ #: includes/tables/class-log-table.php:192
98
  msgid "deleted"
99
  msgstr "verwijderd"
100
 
101
+ #: includes/tables/class-log-table.php:200
 
102
  msgid "Registration"
103
+ msgstr "Registratie"
104
 
105
+ #: includes/tables/class-log-table.php:216
 
106
  msgid "MultiSite registration"
107
+ msgstr "MultiSite registratie"
108
 
109
+ #: includes/tables/class-log-table.php:220
110
+ #: includes/tables/class-log-table.php:224
 
111
  msgid "Checkout"
112
+ msgstr "Checkout"
113
 
114
+ #: includes/tables/class-log-table.php:229
115
  msgid "Contact Form 7"
116
  msgstr "Contact Form 7"
117
 
118
+ #: includes/tables/class-log-table.php:233
119
  msgid "bbPress: New Topic"
120
  msgstr "bbPress: Nieuw Onderwerp"
121
 
122
+ #: includes/tables/class-log-table.php:237
123
  msgid "bbPress: New Reply"
124
  msgstr "bbPress: Nieuwe Reactie"
125
 
126
+ #: includes/tables/class-log-table.php:243
 
127
  msgid "Other Form"
128
+ msgstr "Ander Formulier"
129
 
130
+ #: includes/tables/class-log-table.php:283
131
  msgid "No subscribe requests found."
132
  msgstr "Geen inschrijfverzoeken gevonden."
133
 
134
+ #: includes/tables/class-log-table.php:306
135
+ msgid "All"
136
+ msgstr "Alle"
137
+
138
+ #: includes/tables/class-log-table.php:318
139
+ msgid "Checkbox"
140
+ msgstr "Checkbox"
141
+
142
+ #: includes/views/metaboxes/optional-form-settings.php:8
143
+ msgid "Any settings you specify here will override the <a href=\"%s\">general form settings</a>. If no setting is specified, the corresponding general setting value will be used."
144
+ msgstr "Instellingen die je ingeeft zullen de <a href=\"%s\">standaard formulier instellingen</a> overschrijven. Wanneer je hier niets invult zal de corresponderende standaardwaarde gebruikt worden."
145
 
146
+ #: includes/views/metaboxes/optional-form-settings.php:10
147
  msgid "MailChimp Settings"
148
  msgstr "MailChimp Instellingen"
149
 
150
+ #: includes/views/metaboxes/optional-form-settings.php:13
151
+ #: includes/views/pages/admin-checkbox-settings.php:51
152
+ #: includes/views/tabs/admin-forms-general-settings.php:55
153
  msgid "Double opt-in?"
154
  msgstr "Emailadres bevestigen?"
155
 
156
+ #: includes/views/metaboxes/optional-form-settings.php:20
157
+ #: includes/views/metaboxes/optional-form-settings.php:34
158
+ #: includes/views/metaboxes/optional-form-settings.php:48
159
+ #: includes/views/metaboxes/optional-form-settings.php:62
160
+ #: includes/views/metaboxes/optional-form-settings.php:79
161
+ #: includes/views/metaboxes/optional-form-settings.php:91
162
  msgid "Inherit"
163
  msgstr "Gebruik standaardwaarde"
164
 
165
+ #: includes/views/metaboxes/optional-form-settings.php:22
166
+ #: includes/views/pages/admin-checkbox-settings.php:53
167
+ #: includes/views/tabs/admin-forms-general-settings.php:62
168
+ msgid "Select \"yes\" if you want people to confirm their email address before being subscribed (recommended)"
169
+ msgstr "Selecteer \"ja\" wanneer je wilt dat mensen hun emailadres moeten bevestigen alvorens ze aan je MailChimp lijst worden toegevoegd (aanbevolen)"
 
 
 
 
170
 
171
+ #: includes/views/metaboxes/optional-form-settings.php:27
172
+ #: includes/views/tabs/admin-forms-general-settings.php:76
173
  msgid "Update existing subscribers?"
174
  msgstr "Bestaande inschrijven updaten?"
175
 
176
+ #: includes/views/metaboxes/optional-form-settings.php:36
177
+ #: includes/views/tabs/admin-forms-general-settings.php:83
178
+ msgid "Select \"yes\" if you want to update existing subscribers (instead of showing the \"already subscribed\" message)."
179
+ msgstr "Selecteer \"ja\" wanneer je bestaande abonnees wilt updaten (in plaats van het tonen van de \"reeds ingeschreven\" melding)"
 
 
 
 
180
 
181
+ #: includes/views/metaboxes/optional-form-settings.php:41
182
+ #: includes/views/tabs/admin-forms-general-settings.php:87
183
  msgid "Replace interest groups?"
184
  msgstr "Interessegroepen vervangen?"
185
 
186
+ #: includes/views/metaboxes/optional-form-settings.php:50
187
+ #: includes/views/tabs/admin-forms-general-settings.php:94
188
+ msgid "Select \"yes\" if you want to replace the interest groups with the groups provided instead of adding the provided groups to the member's interest groups (only when updating a subscriber)."
189
+ msgstr "Selecteer \"ja\" wanneer je interest groups wilt verplaatsen met de verstuurde groepen in plaats van deze aan de bestaande groepen toe te voegen (enkel bij het updaten van abonnees)."
 
 
 
 
 
 
190
 
191
+ #: includes/views/metaboxes/optional-form-settings.php:55
192
+ #: includes/views/pages/admin-checkbox-settings.php:57
193
+ #: includes/views/tabs/admin-forms-general-settings.php:66
194
  msgid "Send Welcome Email?"
195
  msgstr "Welkomstemail versturen?"
196
 
197
+ #: includes/views/metaboxes/optional-form-settings.php:64
198
+ #: includes/views/pages/admin-checkbox-settings.php:64
199
+ #: includes/views/tabs/admin-forms-general-settings.php:73
200
+ msgid "Select \"yes\" if you want to send your lists Welcome Email if a subscribe succeeds (only when double opt-in is disabled)."
201
+ msgstr "Selecteer \"ja\" als je de \"Welcome Email\" wilt sturen naar nieuwe abonnees (enkel wanneer \"double opt-in\" uitgeschakeld is)"
 
 
 
 
 
 
 
 
202
 
203
+ #: includes/views/metaboxes/optional-form-settings.php:72
204
+ #: includes/views/tabs/admin-forms-general-settings.php:103
205
  msgid "Enable AJAX form submission?"
206
  msgstr "AJAX (JavaScript) formulieren gebruiken?"
207
 
208
+ #: includes/views/metaboxes/optional-form-settings.php:80
209
+ #: includes/views/tabs/admin-forms-general-settings.php:105
210
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
211
+ msgstr "Selecteer \"ja\" wanneer je AJAX (JavaScript) wilt gebruiken voor het verzenden van formulieren."
 
 
212
 
213
+ #: includes/views/metaboxes/optional-form-settings.php:84
214
+ #: includes/views/tabs/admin-forms-general-settings.php:108
215
  msgid "Hide form after a successful sign-up?"
216
  msgstr "Verberg formulier na succesvolle inschrijvingen?"
217
 
218
+ #: includes/views/metaboxes/optional-form-settings.php:93
219
+ #: includes/views/tabs/admin-forms-general-settings.php:110
220
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
221
+ msgstr "Selecteer \"ja\" om de formuliervelden te verbergen na elke succesvolle inschrijving."
 
 
222
 
223
+ #: includes/views/metaboxes/optional-form-settings.php:97
224
+ #: includes/views/tabs/admin-forms-general-settings.php:113
225
  msgid "Redirect to URL after successful sign-ups"
226
  msgstr "Doorsturen naar URL na succesvolle inschrijving"
227
 
228
+ #: includes/views/metaboxes/optional-form-settings.php:100
229
+ #: includes/views/tabs/admin-forms-general-settings.php:116
230
+ msgid "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, including <code>http://</code>"
231
+ msgstr "Laat leeg (of geef 0 in) voor geen doorverwijzing. Gebruik complete (absolute) URLs, inclusief <code>http://</code>"
 
 
 
 
232
 
233
+ #: includes/views/metaboxes/optional-form-settings.php:104
234
  msgid "Send an email copy of the form data?"
235
  msgstr "Verzend een email kopie van de ingevulde data?"
236
 
237
+ #: includes/views/metaboxes/optional-form-settings.php:108
238
+ msgid "Tick \"yes\" if you want to receive an email with the form data for every sign-up request."
239
+ msgstr "Selecteer \"ja\" als je een email wilt ontvangen met de ingevulde data voor elke inschrijving."
 
 
 
 
240
 
241
+ #: includes/views/metaboxes/optional-form-settings.php:111
242
  msgid "Send the copy to this email:"
243
  msgstr "Verzend de kopie naar dit emailadres:"
244
 
245
+ #: includes/views/metaboxes/optional-form-settings.php:117
246
+ msgid "Messages"
247
+ msgstr "Berichten"
 
248
 
249
+ #: includes/views/metaboxes/optional-form-settings.php:120
250
+ #: includes/views/tabs/admin-forms-general-settings.php:123
251
+ msgid "Success"
252
+ msgstr "Succes"
253
 
254
+ #: includes/views/metaboxes/optional-form-settings.php:124
255
+ #: includes/views/tabs/admin-forms-general-settings.php:128
256
+ msgid "Invalid email address"
257
+ msgstr "Ongeldig emailadres"
258
+
259
+ #: includes/views/metaboxes/optional-form-settings.php:128
260
+ #: includes/views/tabs/admin-forms-general-settings.php:132
261
+ msgid "Required field missing"
262
+ msgstr "Verplicht veld mist"
263
 
264
+ #: includes/views/metaboxes/optional-form-settings.php:132
265
+ #: includes/views/tabs/admin-forms-general-settings.php:136
266
+ msgid "Already subscribed"
267
  msgstr "Reeds ingeschreven"
268
 
269
+ #: includes/views/metaboxes/optional-form-settings.php:137
270
+ #: includes/views/tabs/admin-forms-general-settings.php:142
271
+ msgid "Invalid CAPTCHA"
272
+ msgstr "Foutieve CAPTCHA"
273
 
274
+ #: includes/views/metaboxes/optional-form-settings.php:142
275
+ #: includes/views/tabs/admin-forms-general-settings.php:147
276
+ msgid "Other errors"
277
+ msgstr "Andere fouten"
278
 
279
+ #: includes/views/metaboxes/optional-form-settings.php:148
280
+ #: includes/views/tabs/admin-forms-general-settings.php:152
 
281
  msgid "HTML tags like %s are allowed in the message fields."
282
  msgstr "HTML tags als %s zijn toegestaan in de meldingteksten."
283
 
284
+ #: includes/views/metaboxes/required-form-settings.php:14
285
  msgid "Lists this form subscribes to"
286
  msgstr "Lijsten op welke dit formulier inschrijft"
287
 
288
+ #: includes/views/metaboxes/required-form-settings.php:17
289
+ #: includes/views/pages/admin-checkbox-settings.php:38
 
290
  msgid "No lists found, %sare you connected to MailChimp?%s"
291
  msgstr "Geen lijsten gevonden. %sBen je verbonden met MailChimp?%s"
292
 
293
+ #: includes/views/metaboxes/required-form-settings.php:29
294
  msgid "Add a new field"
295
  msgstr "Voeg een nieuw veld toe"
296
 
297
+ #: includes/views/metaboxes/required-form-settings.php:32
298
  msgid "Select MailChimp field.."
299
  msgstr "Selecteer MailChimp veld.."
300
 
301
+ #: includes/views/metaboxes/required-form-settings.php:36
302
  msgid "Submit Button"
303
  msgstr "Verzendknop"
304
 
305
+ #: includes/views/metaboxes/required-form-settings.php:37
306
  msgid "Lists Choice"
307
  msgstr "Lijstkeuze"
308
 
309
+ #: includes/views/metaboxes/required-form-settings.php:45
310
  msgid "Label"
311
  msgstr "Label"
312
 
313
+ #: includes/views/metaboxes/required-form-settings.php:45
314
+ #: includes/views/metaboxes/required-form-settings.php:50
315
+ #: includes/views/metaboxes/required-form-settings.php:55
316
  msgid "(optional)"
317
  msgstr "(optioneel)"
318
 
319
+ #: includes/views/metaboxes/required-form-settings.php:50
320
  msgid "Placeholder"
321
  msgstr "Placeholder"
322
 
323
+ #: includes/views/metaboxes/required-form-settings.php:55
324
  msgid "Initial value"
325
  msgstr "Initiële waarde"
326
 
327
+ #: includes/views/metaboxes/required-form-settings.php:60
328
  msgid "Labels"
329
  msgstr "Labels"
330
 
331
+ #: includes/views/metaboxes/required-form-settings.php:60
332
  msgid "(leave empty to hide)"
333
  msgstr "(laat leeg om te verbergen)"
334
 
335
+ #: includes/views/metaboxes/required-form-settings.php:65
 
336
  msgid "Wrap in paragraph %s tags?"
337
  msgstr "Wrap in paragraaf %s tags?"
338
 
339
+ #: includes/views/metaboxes/required-form-settings.php:69
340
  msgid "Required field?"
341
  msgstr "Verplicht veld?"
342
 
343
+ #: includes/views/metaboxes/required-form-settings.php:73
344
  msgid "Add to form"
345
  msgstr "Voeg toe aan formulier"
346
 
347
+ #: includes/views/metaboxes/required-form-settings.php:77
348
  msgid "Generated HTML"
349
  msgstr "Gegenereerde HTML"
350
 
351
+ #: includes/views/metaboxes/required-form-settings.php:86
352
  msgid "Form usage"
353
  msgstr "Formulier gebruik"
354
 
355
+ #: includes/views/metaboxes/required-form-settings.php:87
356
+ msgid "Use the shortcode %s to display this form inside a post, page or text widget."
357
+ msgstr "Gebruik de %s shortcode om dit formulier in een post, pagina of tekst widget te tonen."
 
 
 
 
358
 
359
+ #: includes/views/pages/admin-checkbox-settings.php:11
360
+ #: includes/views/pages/admin-form-settings.php:10
361
+ #: includes/views/pages/admin-general-settings.php:10
362
+ #: includes/views/pages/admin-reports.php:10
363
  msgid "MailChimp for WordPress"
364
  msgstr "MailChimp voor WordPress"
365
 
366
+ #: includes/views/pages/admin-checkbox-settings.php:11
367
  msgid "Checkbox Settings"
368
  msgstr "Checkbox Instellingen"
369
 
370
+ #: includes/views/pages/admin-checkbox-settings.php:14
371
+ msgid "To use sign-up checkboxes, select at least one list and one form to add the checkbox to."
372
+ msgstr "Selecteer ten minste 1 MailChimp lijst en 1 formulier om de checkbox aan toe te voegen om inschrijf checkboxes te gebruiken."
 
 
 
 
373
 
374
+ #: includes/views/pages/admin-checkbox-settings.php:21
375
  msgid "MailChimp settings for checkboxes"
376
  msgstr "MailChimp instellingen voor checkboxes"
377
 
378
+ #: includes/views/pages/admin-checkbox-settings.php:26
379
+ msgid "If you want to use sign-up checkboxes, select at least one MailChimp list to subscribe people to."
380
+ msgstr "Selecteer ten minste 1 MailChimp lijst waar mensen aan toegevoegd moeten worden."
 
 
 
 
381
 
382
+ #: includes/views/pages/admin-checkbox-settings.php:34
383
  msgid "MailChimp Lists"
384
  msgstr "MailChimp Lijsten"
385
 
386
+ #: includes/views/pages/admin-checkbox-settings.php:45
387
+ msgid "Select the list(s) to which people who check the checkbox should be subscribed."
388
+ msgstr "Selecteer de lijsten aan welke mensen die checkbox aanvinken toegevoegd zouden moeten worden."
 
 
 
 
389
 
390
+ #: includes/views/pages/admin-checkbox-settings.php:68
391
  msgid "Checkbox settings"
392
  msgstr "Checkbox instellingen"
393
 
394
+ #: includes/views/pages/admin-checkbox-settings.php:71
395
  msgid "Add the checkbox to these forms"
396
  msgstr "Voeg de checkbox toe aan de volgende formulieren"
397
 
398
+ #: includes/views/pages/admin-checkbox-settings.php:78
399
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
400
+ msgstr "Aan de formulieren die je hier selecteert wordt automatisch een \"schrijf je in\" checkbox toegevoegd."
 
 
401
 
402
+ #: includes/views/pages/admin-checkbox-settings.php:86
403
+ msgid "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 forms.</p>"
404
+ msgstr "Gebruik %s in je Contact Form 7 mark-up om een inschrijf checkbox aan je CF7 formulieren toe te voegen."
 
 
 
 
 
405
 
406
+ #: includes/views/pages/admin-checkbox-settings.php:91
407
  msgid "Checkbox label text"
408
  msgstr "Checkbox label tekst"
409
 
410
+ #: includes/views/pages/admin-checkbox-settings.php:94
411
+ #: includes/views/pages/admin-checkbox-settings.php:134
 
412
  msgid "HTML tags like %s are allowed in the label text."
413
  msgstr "HTML tags als %s zijn toegestaan in de label tekst."
414
 
415
+ #: includes/views/pages/admin-checkbox-settings.php:98
416
  msgid "Pre-check the checkbox?"
417
  msgstr "Vink de checkbox standaard aan?"
418
 
419
+ #: includes/views/pages/admin-checkbox-settings.php:103
420
  msgid "Load some default CSS?"
421
  msgstr "Laad standaard CSS?"
422
 
423
+ #: includes/views/pages/admin-checkbox-settings.php:105
424
  msgid "Select \"yes\" if the checkbox appears in a weird place."
425
  msgstr "Selecteer \"ja\" als de checkbox op een vreemde plaats verschijnt."
426
 
427
+ #: includes/views/pages/admin-checkbox-settings.php:108
428
+ msgid "WooCommerce checkbox position"
429
+ msgstr "WooCommerce checkbox positie"
430
+
431
+ #: includes/views/pages/admin-checkbox-settings.php:111
432
+ msgid "After the billing details"
433
+ msgstr "Na de factuurdetails"
434
+
435
+ #: includes/views/pages/admin-checkbox-settings.php:112
436
+ msgid "After the additional information"
437
+ msgstr "Na de additionele informatie"
438
+
439
+ #: includes/views/pages/admin-checkbox-settings.php:115
440
+ msgid "Choose the position for the checkbox in your WooCommerce checkout form."
441
+ msgstr "Kies de positie voor de checkbox in je WooCommerce checkout formulier."
442
 
443
+ #: includes/views/pages/admin-checkbox-settings.php:122
444
  msgid "Custom label texts"
445
  msgstr "Custom label teksten"
446
 
447
+ #: includes/views/pages/admin-checkbox-settings.php:123
448
+ msgid "Override the default checkbox label text for any given checkbox using the fields below."
449
+ msgstr "Overschrijf de standaard checkbox label voor de verschillende checkboxes met behulp van onderstaande velden."
 
 
 
 
450
 
451
+ #: includes/views/pages/admin-form-settings.php:13
452
  msgid "Forms & Settings"
453
  msgstr "Formulieren & Instellingen"
454
 
455
+ #: includes/views/pages/admin-form-settings.php:14
456
  msgid "CSS Styles Builder"
457
  msgstr "CSS Stijl Bouwer"
458
 
459
+ #: includes/views/pages/admin-general-settings.php:10
460
  msgid "License & API Settings"
461
  msgstr "Licentie & API Instellingen"
462
 
463
+ #: includes/views/pages/admin-general-settings.php:19
464
  msgid "API Settings"
465
  msgstr "API Instellingen"
466
 
467
+ #: includes/views/pages/admin-general-settings.php:21
468
  msgid "CONNECTED"
469
  msgstr "VERBONDEN"
470
 
471
+ #: includes/views/pages/admin-general-settings.php:23
472
  msgid "NOT CONNECTED"
473
  msgstr "NIET VERBONDEN"
474
 
475
+ #: includes/views/pages/admin-general-settings.php:29
476
  msgid "API Key"
477
  msgstr "API Sleutel"
478
 
479
+ #: includes/views/pages/admin-general-settings.php:31
480
  msgid "Your MailChimp API key"
481
  msgstr "Je MailChimp API sleutel"
482
 
483
+ #: includes/views/pages/admin-general-settings.php:32
484
  msgid "Get your API key here."
485
  msgstr "Verkrijg hier je API sleutel."
486
 
487
+ #: includes/views/pages/admin-general-settings.php:48
488
  msgid "MailChimp Data"
489
  msgstr "MailChimp Data"
490
 
491
+ #: includes/views/pages/admin-general-settings.php:49
492
+ msgid "The table below shows your MailChimp lists data. If you applied changes to your MailChimp lists, please use the following button to renew your cached data."
493
+ msgstr "The tabel hieronder toont je MailChimp lijst configuratie. Wanneer je hier veranderingen aan hebt doorgevoerd die nog niet weergegeven worden kun je de volgende button gebruiken om je configuratie opnieuw in te laden."
 
 
 
 
 
 
494
 
495
+ #: includes/views/pages/admin-general-settings.php:55
496
+ #: includes/views/pages/admin-general-settings.php:126
497
  msgid "Renew MailChimp lists"
498
  msgstr "Vernieuw MailChimp lijsten"
499
 
500
+ #: includes/views/pages/admin-general-settings.php:113
501
  msgid "No lists were found in your MailChimp account."
502
  msgstr "Er zijn geen lijsten gevonden in je MailChimp account."
503
 
504
+ #: includes/views/pages/admin-reports.php:14
505
  msgid "Statistics"
506
  msgstr "Statistieken"
507
 
508
+ #: includes/views/pages/admin-reports.php:15
509
  msgid "Log"
510
  msgstr "Log"
511
 
512
+ #: includes/views/parts/admin-footer.php:9
513
+ msgid "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or email me directly at <a href=\"%s\">support@mc4wp.com</a>."
514
+ msgstr "Hulp nodig? Kijk eens naar de <a href=\"%s\">plugin documentatie</a> of email me direct op <a href=\"%s\">support@mc4wp.com</a>."
 
 
 
 
 
515
 
516
+ #: includes/views/parts/admin-text-variables.php:13
517
  msgid "Replaced with the form response (error or success messages)."
518
  msgstr "Wordt vervangen door de formulier response (fout- en succesmeldingen)."
519
 
520
+ #: includes/views/parts/admin-text-variables.php:18
521
  msgid "Replaced with a captcha field."
522
  msgstr "Wordt vervangen door een Captcha veld."
523
 
524
+ #: includes/views/parts/admin-text-variables.php:23
525
  msgid "Replaced with the number of subscribers on the selected list(s)"
526
  msgstr "Vervangen door het aantal subscribers op de geselecteerde lijst(en)"
527
 
528
+ #: includes/views/parts/admin-text-variables.php:27
 
529
  msgid "Replaced with the current site language, eg: %s"
530
+ msgstr "Vervangen door de huidige site taal, bijv: %s"
531
 
532
+ #: includes/views/parts/admin-text-variables.php:31
533
  msgid "Replaced with the visitor's IP address"
534
  msgstr "Vervangen door het IP-adres van de bezoeker"
535
 
536
+ #: includes/views/parts/admin-text-variables.php:35
 
537
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
538
  msgstr "Vervangen door de huidige datum (jjjj/mm/dd bijv: %s)"
539
 
540
+ #: includes/views/parts/admin-text-variables.php:39
 
541
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
542
  msgstr "Vervangen door de huidige tijd (uu:mm:ss bijv: %s)"
543
 
544
+ #: includes/views/parts/admin-text-variables.php:43
545
+ msgid "Replaced with the logged in user's email (or nothing, if there is no logged in user)"
546
+ msgstr "Vervangen door het emailadres van de ingelogde gebruiker (of niets wanneer de bezoeker niet ingelogd is)"
 
 
 
 
547
 
548
+ #: includes/views/parts/admin-text-variables.php:47
549
  msgid "First name of the current user"
550
  msgstr "Voornaam van de ingelogde bezoeker"
551
 
552
+ #: includes/views/parts/admin-text-variables.php:51
553
  msgid "Last name of the current user"
554
  msgstr "Achternaam van de ingelogde bezoeker"
555
 
556
+ #: includes/views/parts/admin-text-variables.php:55
557
  msgid "Current user ID"
558
  msgstr "ID van de ingelogde bezoeker"
559
 
560
+ #: includes/views/parts/admin-text-variables.php:59
561
  msgid "Current URL"
562
  msgstr "Huidige URL"
563
 
564
+ #: includes/views/tabs/admin-forms-css-builder.php:10
565
  msgid "Use the fields below to create custom styling rules for your forms."
566
+ msgstr "Gebruik de onderstaande velden om custom stijlregels op te stellen voor je formulieren."
 
 
567
 
568
+ #: includes/views/tabs/admin-forms-css-builder.php:15
569
+ msgid "Select form to build styles for:"
570
+ msgstr "Selecteer formulieren om CSS stijlen voor te genereren:"
571
 
572
+ #: includes/views/tabs/admin-forms-css-builder.php:26
573
+ msgid "Create at least one form first."
574
+ msgstr "Creëer eerst ten minste 1 formulier."
 
575
 
576
+ #: includes/views/tabs/admin-forms-css-builder.php:41
577
+ msgid "You need to have JavaScript enabled to see a preview of your form."
578
+ msgstr "Je moet JavaScript aan hebben staan in je browser om een voorbeeld van je uiteindelijke formulier te kunnen zien."
579
+
580
+ #: includes/views/tabs/admin-forms-css-builder.php:223
581
+ msgid "Are you sure you want to delete all custom styles for this form?"
582
+ msgstr "Weet je zeker dat je alle stijlen voor dit formulier wilt verwijderen?"
583
+
584
+ #: includes/views/tabs/admin-forms-css-builder.php:223
585
+ msgid "Delete Form Styles"
586
+ msgstr "Verwijder formulier stijlen"
587
+
588
+ #: includes/views/tabs/admin-forms-css-builder.php:224
589
+ msgid "Use to delete all styles for this form"
590
+ msgstr "Gebruik dit om alle CSS stijlen voor dit formulier te verwijderen"
591
 
592
+ #: includes/views/tabs/admin-forms-css-builder.php:231
593
+ msgid "Build CSS File"
594
+ msgstr "Genereer CSS Stylesheet"
595
+
596
+ #: includes/views/tabs/admin-forms-general-settings.php:8
597
  msgid "Sign-Up Forms"
598
  msgstr "MailChimp inschrijfformulieren"
599
 
600
+ #: includes/views/tabs/admin-forms-general-settings.php:8
601
  msgid "Create New Form"
602
  msgstr "Maak Nieuw Formulier"
603
 
604
+ #: includes/views/tabs/admin-forms-general-settings.php:16
605
  msgid "General form settings"
606
  msgstr "Algemene formulier instellingen"
607
 
608
+ #: includes/views/tabs/admin-forms-general-settings.php:19
609
  msgid "Load form styles (CSS)?"
610
  msgstr "Laad formulier stijlen (CSS)?"
611
 
612
+ #: includes/views/tabs/admin-forms-general-settings.php:23
613
  msgid "Yes, load basic form styles"
614
  msgstr "Ja, laad standaard formulier stijlen"
615
 
616
+ #: includes/views/tabs/admin-forms-general-settings.php:24
617
  msgid "Yes, load my custom form styles"
618
  msgstr "Ja, laad mijn zelf ontworpen formulier stijlen"
619
 
620
+ #: includes/views/tabs/admin-forms-general-settings.php:25
621
  msgid "Yes, load default form theme"
622
  msgstr "Ja, laad 'n standaard thema"
623
 
624
+ #: includes/views/tabs/admin-forms-general-settings.php:26
625
  msgid "Light Theme"
626
  msgstr "Licht Thema"
627
 
628
+ #: includes/views/tabs/admin-forms-general-settings.php:27
629
  msgid "Red Theme"
630
  msgstr "Rood Thema"
631
 
632
+ #: includes/views/tabs/admin-forms-general-settings.php:28
633
  msgid "Green Theme"
634
  msgstr "Groen Thema"
635
 
636
+ #: includes/views/tabs/admin-forms-general-settings.php:29
637
  msgid "Blue Theme"
638
  msgstr "Blauw Thema"
639
 
640
+ #: includes/views/tabs/admin-forms-general-settings.php:30
641
  msgid "Dark Theme"
642
  msgstr "Donker Thema"
643
 
644
+ #: includes/views/tabs/admin-forms-general-settings.php:31
645
  msgid "Custom Color Theme"
646
  msgstr "Aangepaste Kleur Thema"
647
 
648
+ #: includes/views/tabs/admin-forms-general-settings.php:36
649
+ msgid "If you %screated a custom stylesheet%s and want it to be loaded, select \"custom form styles\". Otherwise, choose the basic formatting styles or one of the default themes."
650
+ msgstr "Als je zelf een %sCSS Stylesheet%s hebt gemaakt en deze geladen wilt hebben, selecteer dan \"custom formulier stijlen\". Anders, kies de standaard formulier stijlen of een van de standaard thema's."
 
 
 
 
 
 
 
651
 
652
+ #: includes/views/tabs/admin-forms-general-settings.php:40
653
  msgid "Select Color"
654
  msgstr "Selecteer Kleur"
655
 
656
+ #: includes/views/tabs/admin-forms-general-settings.php:48
657
+ msgid "Save all changes"
658
+ msgstr "Alle wijzigingen opslaan"
659
+
660
+ #: includes/views/tabs/admin-forms-general-settings.php:50
661
  msgid "Default MailChimp settings"
662
  msgstr "Standaard MailChimp instellingen"
663
 
664
+ #: includes/views/tabs/admin-forms-general-settings.php:51
665
+ #: includes/views/tabs/admin-forms-general-settings.php:99
666
+ msgid "The following settings apply to <strong>all</strong> forms but can be overridden on a per-form basis."
667
+ msgstr "De volgende instellingen gelden voor <strong>alle formulieren</strong> maar kunnen 'overruled' worden per formulier."
668
+
669
+ #: includes/views/tabs/admin-forms-general-settings.php:98
670
+ msgid "Default Form Settings"
671
+ msgstr "Standaard Formulier Instellingen"
672
+
673
+ #: includes/views/tabs/admin-forms-general-settings.php:120
674
+ msgid "Default Messages"
675
+ msgstr "Standaard Berichten"
676
+
677
+ msgid "MailChimp for WordPress Pro"
678
+ msgstr "MailChimp for WordPress Pro"
679
+
680
+ msgid "https://mc4wp.com/"
681
+ msgstr "https://mc4wp.com/"
682
+
683
+ msgid "Pro version of MailChimp for WordPress. Adds various sign-up methods to your website."
684
+ msgstr "Pro versie van MailChimp for WordPress. Voegt verscheidene inschrijfmogelijkheden toe aan je website."
685
+
686
+ msgid "Danny van Kooten"
687
+ msgstr "Danny van Kooten"
688
+
689
+ msgid "http://dannyvankooten.com"
690
+ msgstr "http://dannyvankooten.com"
691
+
692
+ #: includes/admin/class-admin.php:215
693
+ msgid "Settings"
694
+ msgstr "Instellingen"
695
+
696
+ #: includes/admin/class-admin.php:234
697
+ msgid "Documentation"
698
+ msgstr "Documentatie"
699
+
700
+ #: includes/admin/class-admin.php:277
701
+ msgid "Save Form"
702
+ msgstr "Formulier opslaan"
703
+
704
+ #: includes/admin/class-admin.php:281
705
+ msgid "Update Form"
706
+ msgstr "Formulier updaten"
707
+
708
+ #: includes/admin/class-admin.php:314
709
+ msgid "Your email address"
710
+ msgstr "Jouw emailadres"
711
+
712
+ #: includes/admin/class-admin.php:315
713
+ msgid "Email address"
714
+ msgstr "Emailadres"
715
+
716
+ #: includes/admin/class-admin.php:316
717
+ msgid "Sign up"
718
+ msgstr "Inschrijven"
719
+
720
+ #: includes/admin/class-admin.php:332
721
+ msgid "Back to general form settings"
722
+ msgstr "Terug naar generieke formulier instellingen."
723
+
724
+ #: includes/admin/class-admin.php:334
725
+ msgid "Form updated."
726
+ msgstr "Formulier geupdate"
727
+
728
+ #: includes/admin/class-admin.php:335
729
+ msgid "Form saved."
730
+ msgstr "Formulier opgeslagen"
731
+
732
+ #: includes/admin/class-admin.php:343
733
+ msgid "An EMAIL field. Example: <code>%s</code>"
734
+ msgstr "Een EMAIL veld. Voorbeeld: <code>%s</code>"
735
+
736
+ #: includes/admin/class-admin.php:349
737
+ msgid "A submit button. Example: <code>%s</code>"
738
+ msgstr "Een verzendknop. Voorbeeld: <code>%s</code>"
739
+
740
+ #: includes/admin/class-admin.php:349
741
+ msgid "Sign Up"
742
+ msgstr "Inschrijven"
743
+
744
+ #: includes/admin/class-admin.php:377
745
+ msgid "A '%s' field"
746
+ msgstr "Een '%s' veld"
747
+
748
+ #: includes/admin/class-admin.php:389
749
+ msgid "Your form is missing the following (required) form fields:"
750
+ msgstr "Je formulier mist de volgende (verplichte) velden:"
751
+
752
+ #: includes/admin/class-admin.php:461
753
+ #: includes/views/metaboxes/optional-form-settings.php:69
754
+ msgid "Form Settings"
755
+ msgstr "Formulier Instellingen"
756
+
757
+ #: includes/admin/class-admin.php:462
758
+ msgid "Optional Settings"
759
+ msgstr "Optionele Instellingen"
760
+
761
+ #: includes/admin/class-admin.php:463
762
+ msgid "Form Variables"
763
+ msgstr "Formulier Variabelen"
764
+
765
+ #: includes/admin/class-admin.php:503
766
+ msgid "Use the following variables to add some dynamic content to your form."
767
+ msgstr "Gebruik de volgende variabelen om wat dynamische inhoud aan je formulier toe te voegen"
768
+
769
+ #: includes/admin/class-admin.php:601
770
+ msgid "MailChimp & License"
771
+ msgstr "MailChimp & Licentie"
772
+
773
+ #: includes/admin/class-admin.php:602
774
+ msgid "Checkboxes"
775
+ msgstr "Checkboxes"
776
+
777
+ #: includes/admin/class-admin.php:603
778
+ #: includes/views/pages/admin-form-settings.php:10
779
+ msgid "Forms"
780
+ msgstr "Formulieren"
781
+
782
+ #: includes/admin/class-admin.php:604 includes/views/pages/admin-reports.php:10
783
+ msgid "Reports"
784
+ msgstr "Rapporten"
785
+
786
+ #: includes/admin/class-admin.php:701
787
+ msgid "Comment form"
788
+ msgstr "Reactieformulier"
789
+
790
+ #: includes/admin/class-admin.php:702
791
+ msgid "Registration form"
792
+ msgstr "Registratieformulier"
793
+
794
+ #: includes/admin/class-admin.php:706
795
+ msgid "MultiSite forms"
796
+ msgstr "MultiSite formulieren"
797
+
798
+ #: includes/admin/class-admin.php:710 includes/tables/class-log-table.php:212
799
+ msgid "BuddyPress registration"
800
+ msgstr "BuddyPress registratie"
801
+
802
+ #: includes/admin/class-admin.php:718 includes/admin/class-admin.php:722
803
+ msgid "%s checkout"
804
+ msgstr "%s checkout"
805
+
806
+ #: includes/admin/class-admin.php:758
807
+ msgid "Please make sure the plugin is connected to MailChimp. <a href=\"%s\">Provide a valid API key.</a>"
808
+ msgstr "Zorg aub dat de plugin een connectie met MailChimp heeft. <a href=\"%s\">Geef een geldige API sleutel in.</a>"
809
+
810
+ #: includes/admin/class-admin.php:768
811
+ msgid "Renewed MailChimp cache."
812
+ msgstr "MailChimp cache met succes vernieuwd."
813
+
814
+ #: includes/admin/class-admin.php:770
815
+ msgid "Failed to renew MailChimp cache - please try again later."
816
+ msgstr "Het is niet gelukt om de MailChimp cache te legen - probeer het alsjeblieft later opnieuw."
817
+
818
+ #: includes/admin/class-admin.php:860
819
+ msgid "End date can't be before the start date"
820
+ msgstr "Einddatum kan niet vóór de startdatum liggen"
821
+
822
+ #: includes/admin/class-admin.php:892
823
+ msgid "You disabled logging using the %s filter. Re-enable it to use the Reports page."
824
+ msgstr "Je hebt logging uitgeschakeld met behulp van de %s filter. Om de Reports pagina te kunnen gebruiken moet logging ingeschakeld zijn."
825
+
826
+ #: includes/admin/class-admin.php:908
827
+ msgid "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the settings you had set in the Lite version, please <a href=\"%s\">deactivate it now</a> to prevent problems"
828
+ msgstr "<strong>Welkom bij MailChimp voor WordPress Pro!</strong> Je instellingen uit de Lite versie zijn overgezet, deactiveer <a href=\"%s\">de Lite plugin</a> om problemen te voorkomen."
829
+
830
+ #: includes/admin/class-styles-builder.php:319
831
+ msgid "Couldn't create the stylesheet. Manually add the generated CSS to your theme stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
832
+ msgstr "De stylesheet kon niet worden gecreëerd. Voeg de gegenereerde CSS manueel toe aan je thema stylesheet door de %sThema Editor%s te gebruiken, of gebruik FTP en wijzig <em>%s</em>"
833
+
834
+ #: includes/admin/class-styles-builder.php:320
835
+ msgid "%sShow generated CSS%s"
836
+ msgstr "%sToon CSS%s"
837
+
838
+ #: includes/admin/class-styles-builder.php:330
839
+ msgid "To apply these styles on your website, select \"load custom form styles\" in the %sform settings%s"
840
+ msgstr "Selecteer \"laad custom formulier stijlen\" in de %sformulier instellingen%s om deze stijlen op je website te gebruiken"
841
+
842
+ #: includes/admin/class-styles-builder.php:331
843
+ msgid "The %sCSS Stylesheet%s has been created."
844
+ msgstr "De %sCSS Stylesheet%s is gecreëerd. "
845
+
846
+ #: includes/class-form-manager.php:239
847
+ msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
848
+ msgstr "<strong>Fout:</strong> Geef aub een formulier ID in. Example: %s"
849
+
850
+ #: includes/class-form-manager.php:253
851
+ msgid "<strong>Error:</strong> Sign-up form not found. Please check if you used the correct form ID."
852
+ msgstr "<strong>Fout:</strong> Inschrijfformulier niet gevonden. Check aub of je het correcte formulier ID gebruikt hebt."
853
+
854
+ #: includes/class-form-request.php:453
855
+ msgid "New Sign-Up"
856
+ msgstr "Nieuwe inschrijving"
857
+
858
+ #: includes/class-form-request.php:454
859
+ msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
860
+ msgstr "<strong>%s</strong> schreef zich om %s op %s in met het formulier \"%s\""
861
+
862
+ #: includes/class-form-request.php:495
863
+ msgid "Note that you've enabled double opt-in for the \"%s\" form. The user won't be added to the selected MailChimp lists until they confirm their email address."
864
+ msgstr "PS. Je hebt \"double opt-in\" aanstaan voor het formulier \"%s\". Het hierboven weergegeven emailadres zal niet aan de geselecteerde MailChimp lijst(en) worden toegevoegd totdat deze zijn of haar emailadres heeft bevestigd."
865
+
866
+ #: includes/class-form-request.php:498
867
+ msgid "This email was auto-sent by the MailChimp for WordPress plugin."
868
+ msgstr "Deze email is gestuurd door de MailChimp for WordPress plugin."
869
+
870
+ #: includes/class-widget.php:20
871
+ msgid "MailChimp for WP Form"
872
+ msgstr "MailChimp voor WP formulier"
873
+
874
+ #: includes/class-widget.php:21
875
+ msgid "Displays one of your MailChimp for WordPress sign-up forms"
876
+ msgstr "Toont een van je MailChimp for WordPress inschrijfformulieren"
877
+
878
+ #: includes/class-widget.php:39
879
+ msgid "Please select the sign-up form you'd like to show here in the <a href=\"%s\">widget settings</a>."
880
+ msgstr "Selecteer aub het inschrijfformulier dat je hier wilt laten zien in de <a href=\"%s\">widget instellingen</a>."
881
+
882
+ #: includes/class-widget.php:68
883
+ msgid "Newsletter"
884
+ msgstr "Nieuwsbrief"
885
+
886
+ #: includes/class-widget.php:79
887
+ msgid "Title:"
888
+ msgstr "Titel:"
889
+
890
+ #: includes/class-widget.php:83
891
+ msgid "Form:"
892
+ msgstr "Formulier:"
893
+
894
+ #: includes/class-widget.php:85
895
+ msgid "Select the form to show"
896
+ msgstr "Selecteer het formulier om te tonen"
897
+
898
+ #: includes/class-widget.php:93
899
+ msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
900
+ msgstr "Je hebt nog geen inschrijfformulieren. <a href=\"%s\">Maak er een.</a>"
901
+
902
+ #: includes/functions/general.php:20
903
+ msgid "Sign me up for the newsletter!"
904
+ msgstr "Schrijf me in voor de nieuwsbrief!"
905
+
906
+ #: includes/functions/general.php:43
907
+ msgid "Thank you, your sign-up request was successful! Please check your email inbox to confirm."
908
+ msgstr "Dankjewel, je inschrijfverzoek was succesvol. Controleer je email inbox voor 'n bevestiging."
909
+
910
+ #: includes/functions/general.php:44
911
+ msgid "Oops. Something went wrong. Please try again later."
912
+ msgstr "Oeps, er ging iets fout. Probeer het aub later opnieuw."
913
+
914
+ #: includes/functions/general.php:45
915
+ msgid "Please provide a valid email address."
916
+ msgstr "Geef een geldig emailadres in."
917
+
918
+ #: includes/functions/general.php:46
919
+ msgid "Given email address is already subscribed, thank you!"
920
+ msgstr "Dit emailadres is reeds ingeschreven, dankjewel!"
921
+
922
+ #: includes/functions/general.php:47
923
+ msgid "Please complete the CAPTCHA."
924
+ msgstr "Vul aub een geldige CAPTCHA in."
925
+
926
+ #: includes/functions/general.php:48
927
+ msgid "Please fill in the required fields."
928
+ msgstr "Vul aub de verplichte velden in."
929
+
930
+ #: includes/integrations/class-cf7.php:44
931
+ #: includes/views/metaboxes/optional-form-settings.php:16
932
+ #: includes/views/metaboxes/optional-form-settings.php:30
933
+ #: includes/views/metaboxes/optional-form-settings.php:44
934
+ #: includes/views/metaboxes/optional-form-settings.php:58
935
+ #: includes/views/metaboxes/optional-form-settings.php:75
936
+ #: includes/views/metaboxes/optional-form-settings.php:87
937
+ #: includes/views/metaboxes/optional-form-settings.php:106
938
+ #: includes/views/pages/admin-checkbox-settings.php:52
939
+ #: includes/views/pages/admin-checkbox-settings.php:60
940
+ #: includes/views/pages/admin-checkbox-settings.php:99
941
+ #: includes/views/pages/admin-checkbox-settings.php:104
942
+ #: includes/views/tabs/admin-forms-general-settings.php:58
943
+ #: includes/views/tabs/admin-forms-general-settings.php:69
944
+ #: includes/views/tabs/admin-forms-general-settings.php:79
945
+ #: includes/views/tabs/admin-forms-general-settings.php:90
946
+ #: includes/views/tabs/admin-forms-general-settings.php:104
947
+ #: includes/views/tabs/admin-forms-general-settings.php:109
948
+ msgid "Yes"
949
+ msgstr "Ja"
950
+
951
+ #: includes/integrations/class-cf7.php:44
952
+ #: includes/views/metaboxes/optional-form-settings.php:18
953
+ #: includes/views/metaboxes/optional-form-settings.php:32
954
+ #: includes/views/metaboxes/optional-form-settings.php:46
955
+ #: includes/views/metaboxes/optional-form-settings.php:60
956
+ #: includes/views/metaboxes/optional-form-settings.php:77
957
+ #: includes/views/metaboxes/optional-form-settings.php:89
958
+ #: includes/views/metaboxes/optional-form-settings.php:107
959
+ #: includes/views/pages/admin-checkbox-settings.php:52
960
+ #: includes/views/pages/admin-checkbox-settings.php:62
961
+ #: includes/views/pages/admin-checkbox-settings.php:99
962
+ #: includes/views/pages/admin-checkbox-settings.php:104
963
+ #: includes/views/tabs/admin-forms-general-settings.php:22
964
+ #: includes/views/tabs/admin-forms-general-settings.php:60
965
+ #: includes/views/tabs/admin-forms-general-settings.php:71
966
+ #: includes/views/tabs/admin-forms-general-settings.php:81
967
+ #: includes/views/tabs/admin-forms-general-settings.php:92
968
+ #: includes/views/tabs/admin-forms-general-settings.php:104
969
+ #: includes/views/tabs/admin-forms-general-settings.php:109
970
+ msgid "No"
971
+ msgstr "Nee"
972
+
973
+ #: includes/library/license-manager/class-license-manager.php:152
974
+ msgid "I know. Don't bug me."
975
+ msgstr "Weet ik. "
976
+
977
+ #: includes/library/license-manager/class-license-manager.php:171
978
+ msgid "<b>Warning!</b> You're blocking external requests which means you won't be able to get %s updates. Please add %s to %s."
979
+ msgstr "<b>Waarschuwing!</b> Je blokkeert externe requests wat betekent dat je geen updates voor %s kunt ontvangen. Voeg aub %s toe aan %s."
980
+
981
+ #: includes/library/license-manager/class-license-manager.php:213
982
+ msgid "Your %s license has been activated. You have an unlimited license. "
983
+ msgstr "Je %s licentie is geactiveerd. Je hebt een ongelimiteerde licentie"
984
+
985
+ #: includes/library/license-manager/class-license-manager.php:215
986
+ msgid "Your %s license has been activated. You have used %d/%d activations. "
987
+ msgstr "Je %s licentie is geactiveerd. Je hebt %d/%d activaties gebruikt."
988
+
989
+ #: includes/library/license-manager/class-license-manager.php:220
990
+ msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
991
+ msgstr "<a href=\"%s\">Wist je dat je je licentie kon upgraden?</a>"
992
+
993
+ #: includes/library/license-manager/class-license-manager.php:224
994
+ msgid "<a href=\"%s\">Your license is expiring in %d days, would you like to extend it?</a>"
995
+ msgstr "<a href=\"%s\">Je licentie verloopt in %d dagen, wil je deze verlengen?</a>"
996
+
997
+ #: includes/library/license-manager/class-license-manager.php:233
998
+ msgid "You've reached your activation limit. You must <a href=\"%s\">reset</a> or <a href=\"%s\">upgrade your license</a> to use it on this site."
999
+ msgstr "Je zit aan het activatielimiet van je licentie. Je kunt je <a href=\"%s\">licentie resetten</a> of <a href=\"%s\">deze upgraden</a> om deze weer te kunnen gebruiken."
1000
+
1001
+ #: includes/library/license-manager/class-license-manager.php:236
1002
+ msgid "Your license has expired. You must <a href=\"%s\">extend your license</a> in order to use it again."
1003
+ msgstr "Je licentie is verlopen. Je moet je <a href=\"%s\">licentie verlengen</a> om deze weer te kunnen gebruiken."
1004
+
1005
+ #: includes/library/license-manager/class-license-manager.php:239
1006
+ msgid "Failed to activate your license, your license key seems to be invalid."
1007
+ msgstr "Je licentie lijkt invalide te zijn."
1008
+
1009
+ #: includes/library/license-manager/class-license-manager.php:264
1010
+ msgid "Your %s license has been deactivated."
1011
+ msgstr "Je %s licentie is gedeactiveerd."
1012
+
1013
+ #: includes/library/license-manager/class-license-manager.php:266
1014
+ msgid "Failed to deactivate your %s license."
1015
+ msgstr "Het is niet gelukt je %s licentie te deactiveren."
1016
+
1017
+ #: includes/library/license-manager/class-license-manager.php:304
1018
+ msgid "Request error: \"%s\""
1019
+ msgstr "Request fout: \"%s\""
1020
+
1021
+ #: includes/library/license-manager/class-license-manager.php:463
1022
+ msgid "%s: License Settings"
1023
+ msgstr "%s: Licentie Instellingen"
1024
+
1025
+ #: includes/library/license-manager/class-plugin-license-manager.php:67
1026
+ msgid "%s is network activated, please contact your site administrator to manage the license."
1027
+ msgstr "%s is netwerk-geactiveerd. Neem aub contact op met je site admin om je licentie te beheren."
1028
+
1029
+ #: includes/library/license-manager/class-update-manager.php:69
1030
+ msgid "%s failed to check for updates because of the following error: <em>%s</em>"
1031
+ msgstr "Het lukte %s niet om voor updates te checken door de volgende fout: <em>%s</em>"
1032
+
1033
+ #: includes/library/license-manager/class-update-manager.php:131
1034
+ msgid "This site has not been activated properly on dannyvankooten.com and thus cannot check for future updates. Please activate your site with a valid license key."
1035
+ msgstr "De licentie voor deze website is niet correct geactiveerd op dannyvankooten.com en kan daarom geen updates ontvangen. Activeer aub je website met een geldige licentie."
1036
+
1037
+ #: includes/library/license-manager/views/form.php:23
1038
+ msgid "License status"
1039
+ msgstr "Licentie status"
1040
+
1041
+ #: includes/library/license-manager/views/form.php:33
1042
+ msgid "Toggle license status"
1043
+ msgstr "Activeer/deactiveer licentie status"
1044
+
1045
+ #: includes/library/license-manager/views/form.php:37
1046
+ msgid "Deactivate License"
1047
+ msgstr "Deactiveer Licentie"
1048
+
1049
+ #: includes/library/license-manager/views/form.php:38
1050
+ msgid "(deactivate your license so you can activate it on another WordPress site)"
1051
+ msgstr "(deactiveer je licentie zodat je deze op een andere website kunt activeren)"
1052
+
1053
+ #: includes/library/license-manager/views/form.php:42
1054
+ msgid "Activate License"
1055
+ msgstr "Activeer Licentie"
1056
+
1057
+ #: includes/library/license-manager/views/form.php:44
1058
+ msgid "Please enter a license key in the field below first."
1059
+ msgstr "Vul aub een licentiecode in het veld hieronder in."
1060
+
1061
+ #: includes/library/license-manager/views/form.php:52
1062
+ msgid "License Key"
1063
+ msgstr "Licentiecode"
1064
+
1065
+ #: includes/library/license-manager/views/form.php:54
1066
+ msgid "Paste your license key here, as found in the email receipt."
1067
+ msgstr "Plak je licentiecode hier, zoals die in de aankoopemail staat."
1068
+
1069
+ #: includes/library/license-manager/views/form.php:56
1070
+ msgid "You defined your license key using the %s PHP constant."
1071
+ msgstr "Je hebt je licentiecode gedefinieerd met behulp van de PHP constante %s."
languages/mailchimp-for-wp-sk_SK.mo ADDED
Binary file
languages/{mailchimp-for-wp.po → mailchimp-for-wp-sk_SK.po} RENAMED
@@ -2,137 +2,139 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: MailChimp for WordPress\n"
4
  "POT-Creation-Date: 2014-08-12 15:11+0100\n"
5
- "PO-Revision-Date: 2014-08-12 15: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"
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.6\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
 
 
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
  #: ../includes/admin/class-admin.php:183
18
  msgid "Settings"
19
- msgstr ""
20
 
21
  #: ../includes/admin/class-admin.php:202
22
  msgid "Documentation"
23
- msgstr ""
24
 
25
  #: ../includes/admin/class-admin.php:245
26
  msgid "Save Form"
27
- msgstr ""
28
 
29
  #: ../includes/admin/class-admin.php:249
30
  msgid "Update Form"
31
- msgstr ""
32
 
33
  #: ../includes/admin/class-admin.php:282
34
  msgid "Your email address"
35
- msgstr ""
36
 
37
  #: ../includes/admin/class-admin.php:283
38
  msgid "Email address"
39
- msgstr ""
40
 
41
  #: ../includes/admin/class-admin.php:284
42
  msgid "Sign up"
43
- msgstr ""
44
 
45
  #: ../includes/admin/class-admin.php:300
46
  msgid "Back to general form settings"
47
- msgstr ""
48
 
49
  #: ../includes/admin/class-admin.php:302
50
  msgid "Form updated."
51
- msgstr ""
52
 
53
  #: ../includes/admin/class-admin.php:303
54
  msgid "Form saved."
55
- msgstr ""
56
 
57
  #: ../includes/admin/class-admin.php:311
58
  #, php-format
59
  msgid "An EMAIL field. Example: <code>%s</code>"
60
- msgstr ""
61
 
62
  #: ../includes/admin/class-admin.php:317
63
  #, php-format
64
  msgid "A submit button. Example: <code>%s</code>"
65
- msgstr ""
66
 
67
  #: ../includes/admin/class-admin.php:317
68
  msgid "Sign Up"
69
- msgstr ""
70
 
71
  #: ../includes/admin/class-admin.php:345
72
  #, php-format
73
  msgid "A '%s' field"
74
- msgstr ""
75
 
76
  #: ../includes/admin/class-admin.php:357
77
  msgid "Your form is missing the following (required) form fields:"
78
- msgstr ""
79
 
80
  #: ../includes/admin/class-admin.php:429
81
  msgid "Form Settings"
82
- msgstr ""
83
 
84
  #: ../includes/admin/class-admin.php:430
85
  msgid "Optional Settings"
86
- msgstr ""
87
 
88
  #: ../includes/admin/class-admin.php:431
89
  msgid "Form Variables"
90
- msgstr ""
91
 
92
  #: ../includes/admin/class-admin.php:465
93
  msgid "Use the following variables to add some dynamic content to your form."
94
  msgstr ""
 
95
 
96
  #: ../includes/admin/class-admin.php:547
97
  msgid "MailChimp & License"
98
- msgstr ""
99
 
100
  #: ../includes/admin/class-admin.php:548
101
  msgid "Checkboxes"
102
- msgstr ""
103
 
104
  #: ../includes/admin/class-admin.php:549
105
  #: ../includes/tables/class-forms-table.php:20
106
  #: ../includes/views/pages/admin-form-settings.php:10
107
  msgid "Forms"
108
- msgstr ""
109
 
110
  #: ../includes/admin/class-admin.php:550
111
  #: ../includes/views/pages/admin-reports.php:10
112
  msgid "Reports"
113
- msgstr ""
114
 
115
  #: ../includes/admin/class-admin.php:634
116
  msgid "Comment form"
117
- msgstr ""
118
 
119
  #: ../includes/admin/class-admin.php:635
120
  msgid "Registration form"
121
- msgstr ""
122
 
123
  #: ../includes/admin/class-admin.php:639
124
  msgid "MultiSite forms"
125
- msgstr ""
126
 
127
  #: ../includes/admin/class-admin.php:643
128
  #: ../includes/tables/class-log-table.php:212
129
  msgid "BuddyPress registration"
130
- msgstr ""
131
 
132
  #: ../includes/admin/class-admin.php:651 ../includes/admin/class-admin.php:655
133
  #, php-format
134
  msgid "%s checkout"
135
- msgstr ""
136
 
137
  #: ../includes/admin/class-admin.php:689
138
  #, php-format
@@ -140,18 +142,21 @@ msgid ""
140
  "Please make sure the plugin is connected to MailChimp. <a href=\"%s"
141
  "\">Provide a valid API key.</a>"
142
  msgstr ""
 
 
143
 
144
  #: ../includes/admin/class-admin.php:699
145
  msgid "Renewed MailChimp cache."
146
- msgstr ""
147
 
148
  #: ../includes/admin/class-admin.php:701
149
  msgid "Failed to renew MailChimp cache - please try again later."
150
  msgstr ""
 
151
 
152
  #: ../includes/admin/class-admin.php:779
153
  msgid "End date can't be before the start date"
154
- msgstr ""
155
 
156
  #: ../includes/admin/class-admin.php:811
157
  #, php-format
@@ -159,6 +164,8 @@ msgid ""
159
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
160
  "page."
161
  msgstr ""
 
 
162
 
163
  #: ../includes/admin/class-admin.php:827
164
  #, php-format
@@ -167,6 +174,9 @@ msgid ""
167
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
168
  "it now</a> to prevent problems"
169
  msgstr ""
 
 
 
170
 
171
  #: ../includes/admin/class-css-builder.php:270
172
  #, php-format
@@ -174,11 +184,13 @@ msgid ""
174
  "Couldn't create the stylesheet. Manually add the generated CSS to your theme "
175
  "stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
176
  msgstr ""
 
 
177
 
178
  #: ../includes/admin/class-css-builder.php:271
179
  #, php-format
180
  msgid "%sShow generated CSS%s"
181
- msgstr ""
182
 
183
  #: ../includes/admin/class-css-builder.php:281
184
  #, php-format
@@ -186,43 +198,49 @@ msgid ""
186
  "To apply these styles on your website, select \"load custom form styles\" in "
187
  "the %sform settings%s"
188
  msgstr ""
 
 
189
 
190
  #: ../includes/admin/class-css-builder.php:282
191
  #, php-format
192
  msgid "The %sCSS Stylesheet%s has been created."
193
- msgstr ""
194
 
195
  #: ../includes/class-form-manager.php:238
196
  #, php-format
197
  msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
198
- msgstr ""
199
 
200
  #: ../includes/class-form-manager.php:252
201
  msgid ""
202
  "<strong>Error:</strong> Sign-up form not found. Please check if you used the "
203
  "correct form ID."
204
  msgstr ""
 
 
205
 
206
  #: ../includes/class-form-request.php:453
207
  msgid "New Sign-Up"
208
- msgstr ""
209
 
210
  #: ../includes/class-form-request.php:454
211
  #, php-format
212
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
213
- msgstr ""
214
 
215
  #: ../includes/class-form-request.php:493
216
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
217
  msgstr ""
 
218
 
219
  #: ../includes/class-widget.php:20
220
  msgid "MailChimp for WP Form"
221
- msgstr ""
222
 
223
  #: ../includes/class-widget.php:21
224
  msgid "Displays one of your MailChimp for WordPress sign-up forms"
225
  msgstr ""
 
226
 
227
  #: ../includes/class-widget.php:39
228
  #, php-format
@@ -230,57 +248,62 @@ msgid ""
230
  "Please select the sign-up form you'd like to show here in the <a href=\"%s"
231
  "\">widget settings</a>."
232
  msgstr ""
 
 
233
 
234
  #: ../includes/class-widget.php:68
235
  msgid "Newsletter"
236
- msgstr ""
237
 
238
  #: ../includes/class-widget.php:79
239
  msgid "Title:"
240
- msgstr ""
241
 
242
  #: ../includes/class-widget.php:83
243
  msgid "Form:"
244
- msgstr ""
245
 
246
  #: ../includes/class-widget.php:85
247
  msgid "Select the form to show"
248
- msgstr ""
249
 
250
  #: ../includes/class-widget.php:93
251
  #, php-format
252
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
253
  msgstr ""
 
254
 
255
  #: ../includes/functions/general.php:20
256
  msgid "Sign me up for the newsletter!"
257
- msgstr ""
258
 
259
  #: ../includes/functions/general.php:42
260
  msgid ""
261
  "Thank you, your sign-up request was successful! Please check your email "
262
  "inbox to confirm."
263
  msgstr ""
 
 
264
 
265
  #: ../includes/functions/general.php:43
266
  msgid "Oops. Something went wrong. Please try again later."
267
- msgstr ""
268
 
269
  #: ../includes/functions/general.php:44
270
  msgid "Please provide a valid email address."
271
- msgstr ""
272
 
273
  #: ../includes/functions/general.php:45
274
  msgid "Given email address is already subscribed, thank you!"
275
- msgstr ""
276
 
277
  #: ../includes/functions/general.php:46
278
  msgid "Please complete the CAPTCHA."
279
- msgstr ""
280
 
281
  #: ../includes/functions/general.php:47
282
  msgid "Please fill in the required fields."
283
- msgstr ""
284
 
285
  #: ../includes/integrations/class-cf7.php:44
286
  #: ../includes/views/metaboxes/optional-form-settings.php:16
@@ -301,7 +324,7 @@ msgstr ""
301
  #: ../includes/views/tabs/admin-forms-general-settings.php:104
302
  #: ../includes/views/tabs/admin-forms-general-settings.php:109
303
  msgid "Yes"
304
- msgstr ""
305
 
306
  #: ../includes/integrations/class-cf7.php:44
307
  #: ../includes/views/metaboxes/optional-form-settings.php:18
@@ -323,7 +346,7 @@ msgstr ""
323
  #: ../includes/views/tabs/admin-forms-general-settings.php:104
324
  #: ../includes/views/tabs/admin-forms-general-settings.php:109
325
  msgid "No"
326
- msgstr ""
327
 
328
  #: ../includes/library/license-manager/class-license-manager.php:158
329
  #, php-format
@@ -331,21 +354,23 @@ msgid ""
331
  "<b>Warning!</b> You're blocking external requests which means you won't be "
332
  "able to get %s updates. Please add %s to %s."
333
  msgstr ""
 
 
334
 
335
  #: ../includes/library/license-manager/class-license-manager.php:201
336
  #, php-format
337
  msgid "Your %s license has been activated. You have an unlimited license. "
338
- msgstr ""
339
 
340
  #: ../includes/library/license-manager/class-license-manager.php:203
341
  #, php-format
342
  msgid "Your %s license has been activated. You have used %d/%d activations. "
343
- msgstr ""
344
 
345
  #: ../includes/library/license-manager/class-license-manager.php:208
346
  #, php-format
347
  msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
348
- msgstr ""
349
 
350
  #: ../includes/library/license-manager/class-license-manager.php:212
351
  #, php-format
@@ -353,6 +378,7 @@ msgid ""
353
  "<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
354
  "it?</a>"
355
  msgstr ""
 
356
 
357
  #: ../includes/library/license-manager/class-license-manager.php:221
358
  #, php-format
@@ -360,6 +386,8 @@ msgid ""
360
  "You've reached your activation limit. You must <a href=\"%s\">upgrade your "
361
  "license</a> to use it on this site."
362
  msgstr ""
 
 
363
 
364
  #: ../includes/library/license-manager/class-license-manager.php:224
365
  #, php-format
@@ -367,30 +395,33 @@ msgid ""
367
  "Your license has expired. You must <a href=\"%s\">extend your license</a> in "
368
  "order to use it again."
369
  msgstr ""
 
 
370
 
371
  #: ../includes/library/license-manager/class-license-manager.php:227
372
  msgid "Failed to activate your license, your license key seems to be invalid."
373
  msgstr ""
 
374
 
375
  #: ../includes/library/license-manager/class-license-manager.php:251
376
  #, php-format
377
  msgid "Your %s license has been deactivated."
378
- msgstr ""
379
 
380
  #: ../includes/library/license-manager/class-license-manager.php:253
381
  #, php-format
382
  msgid "Failed to deactivate your %s license."
383
- msgstr ""
384
 
385
  #: ../includes/library/license-manager/class-license-manager.php:289
386
  #, php-format
387
  msgid "Request error: \"%s\""
388
- msgstr ""
389
 
390
  #: ../includes/library/license-manager/class-license-manager.php:447
391
  #, php-format
392
  msgid "%s: License Settings"
393
- msgstr ""
394
 
395
  #: ../includes/library/license-manager/class-plugin-license-manager.php:67
396
  #, php-format
@@ -398,172 +429,183 @@ msgid ""
398
  "%s is network activated, please contact your site administrator to manage "
399
  "the license."
400
  msgstr ""
 
 
401
 
402
  #: ../includes/library/license-manager/class-update-manager.php:69
403
  #, php-format
404
  msgid ""
405
  "%s failed to check for updates because of the following error: <em>%s</em>"
406
  msgstr ""
 
 
407
 
408
  #: ../includes/library/license-manager/class-update-manager.php:138
409
  msgid ""
410
- "This site has not been activated properly on mc4wp.com and thus "
411
  "cannot check for future updates. Please activate your site with a valid "
412
  "license key."
413
  msgstr ""
 
 
 
414
 
415
  #: ../includes/library/license-manager/views/form.php:23
416
  msgid "License status"
417
- msgstr ""
418
 
419
  #: ../includes/library/license-manager/views/form.php:33
420
  msgid "Toggle license status"
421
- msgstr ""
422
 
423
  #: ../includes/library/license-manager/views/form.php:38
424
  msgid ""
425
  "(deactivate your license so you can activate it on another WordPress site)"
426
  msgstr ""
 
 
427
 
428
  #: ../includes/library/license-manager/views/form.php:44
429
  msgid "Please enter a license key in the field below first."
430
- msgstr ""
431
 
432
  #: ../includes/library/license-manager/views/form.php:52
433
  msgid "License Key"
434
- msgstr ""
435
 
436
  #: ../includes/library/license-manager/views/form.php:54
437
  msgid "Paste your license key here, as found in the email receipt."
438
- msgstr ""
439
 
440
  #: ../includes/library/license-manager/views/form.php:56
441
  #, php-format
442
  msgid "You defined your license key using the %s PHP constant."
443
- msgstr ""
444
 
445
  #: ../includes/library/license-manager/views/form.php:73
446
  #, php-format
447
  msgid "Your %s license will expire on %s."
448
- msgstr ""
449
 
450
  #: ../includes/library/license-manager/views/form.php:76
451
  #, php-format
452
  msgid "%sRenew your license now%s."
453
- msgstr ""
454
 
455
  #: ../includes/tables/class-forms-table.php:19
456
  #: ../includes/tables/class-forms-table.php:36
457
  #: ../includes/tables/class-log-table.php:207
458
  msgid "Form"
459
- msgstr ""
460
 
461
  #: ../includes/tables/class-forms-table.php:35
462
  msgid "ID"
463
- msgstr ""
464
 
465
  #: ../includes/tables/class-forms-table.php:37
466
  msgid "Shortcode"
467
- msgstr ""
468
 
469
  #: ../includes/tables/class-forms-table.php:38
470
  msgid "List(s)"
471
- msgstr ""
472
 
473
  #: ../includes/tables/class-forms-table.php:39
474
  msgid "Last edited"
475
- msgstr ""
476
 
477
  #: ../includes/tables/class-forms-table.php:76
478
  #: ../includes/tables/class-forms-table.php:80
479
  msgid "Edit Form"
480
- msgstr ""
481
 
482
  #: ../includes/tables/class-forms-table.php:77
483
  msgid "Delete"
484
- msgstr ""
485
 
486
  #: ../includes/tables/class-forms-table.php:98
487
  msgid "No MailChimp list(s) selected yet."
488
- msgstr ""
489
 
490
  #: ../includes/tables/class-forms-table.php:105
491
  msgid "You have not created any sign-up forms yet. Time to do so!"
492
  msgstr ""
 
 
493
 
494
  #: ../includes/tables/class-log-table.php:33
495
  msgid "Subscriber"
496
- msgstr ""
497
 
498
  #: ../includes/tables/class-log-table.php:34
499
  msgid "Subscribers"
500
- msgstr ""
501
 
502
  #: ../includes/tables/class-log-table.php:53
503
  msgid "Email"
504
- msgstr ""
505
 
506
  #: ../includes/tables/class-log-table.php:54
507
  msgid "List"
508
- msgstr ""
509
 
510
  #: ../includes/tables/class-log-table.php:55
511
  msgid "Type"
512
- msgstr ""
513
 
514
  #: ../includes/tables/class-log-table.php:56
515
  msgid "Source"
516
- msgstr ""
517
 
518
  #: ../includes/tables/class-log-table.php:57
519
  msgid "Extra data"
520
- msgstr ""
521
 
522
  #: ../includes/tables/class-log-table.php:58
523
  msgid "Subscribed"
524
- msgstr ""
525
 
526
  #: ../includes/tables/class-log-table.php:192
527
  #: ../includes/tables/class-log-table.php:196
528
  msgid "Comment"
529
- msgstr ""
530
 
531
  #: ../includes/tables/class-log-table.php:192
532
  msgid "deleted"
533
- msgstr ""
534
 
535
  #: ../includes/tables/class-log-table.php:200
536
  msgid "Registration"
537
- msgstr ""
538
 
539
  #: ../includes/tables/class-log-table.php:216
540
  msgid "MultiSite registration"
541
- msgstr ""
542
 
543
  #: ../includes/tables/class-log-table.php:220
544
  #: ../includes/tables/class-log-table.php:224
545
  msgid "Checkout"
546
- msgstr ""
547
 
548
  #: ../includes/tables/class-log-table.php:229
549
  msgid "Contact Form 7"
550
- msgstr ""
551
 
552
  #: ../includes/tables/class-log-table.php:233
553
  msgid "bbPress: New Topic"
554
- msgstr ""
555
 
556
  #: ../includes/tables/class-log-table.php:237
557
  msgid "bbPress: New Reply"
558
- msgstr ""
559
 
560
  #: ../includes/tables/class-log-table.php:243
561
  msgid "Other Form"
562
- msgstr ""
563
 
564
  #: ../includes/tables/class-log-table.php:283
565
  msgid "No subscribe requests found."
566
- msgstr ""
567
 
568
  #: ../includes/views/metaboxes/optional-form-settings.php:8
569
  #, php-format
@@ -572,16 +614,19 @@ msgid ""
572
  "settings</a>. If no setting is specified, the corresponding general setting "
573
  "value will be used."
574
  msgstr ""
 
 
 
575
 
576
  #: ../includes/views/metaboxes/optional-form-settings.php:10
577
  msgid "MailChimp Settings"
578
- msgstr ""
579
 
580
  #: ../includes/views/metaboxes/optional-form-settings.php:13
581
  #: ../includes/views/pages/admin-checkbox-settings.php:51
582
  #: ../includes/views/tabs/admin-forms-general-settings.php:55
583
  msgid "Double opt-in?"
584
- msgstr ""
585
 
586
  #: ../includes/views/metaboxes/optional-form-settings.php:20
587
  #: ../includes/views/metaboxes/optional-form-settings.php:34
@@ -590,7 +635,7 @@ msgstr ""
590
  #: ../includes/views/metaboxes/optional-form-settings.php:79
591
  #: ../includes/views/metaboxes/optional-form-settings.php:91
592
  msgid "Inherit"
593
- msgstr ""
594
 
595
  #: ../includes/views/metaboxes/optional-form-settings.php:22
596
  #: ../includes/views/pages/admin-checkbox-settings.php:53
@@ -599,11 +644,13 @@ msgid ""
599
  "Select \"yes\" if you want people to confirm their email address before "
600
  "being subscribed (recommended)"
601
  msgstr ""
 
 
602
 
603
  #: ../includes/views/metaboxes/optional-form-settings.php:27
604
  #: ../includes/views/tabs/admin-forms-general-settings.php:76
605
  msgid "Update existing subscribers?"
606
- msgstr ""
607
 
608
  #: ../includes/views/metaboxes/optional-form-settings.php:36
609
  #: ../includes/views/tabs/admin-forms-general-settings.php:83
@@ -611,11 +658,13 @@ msgid ""
611
  "Select \"yes\" if you want to update existing subscribers (instead of "
612
  "showing the \"already subscribed\" message)."
613
  msgstr ""
 
 
614
 
615
  #: ../includes/views/metaboxes/optional-form-settings.php:41
616
  #: ../includes/views/tabs/admin-forms-general-settings.php:87
617
  msgid "Replace interest groups?"
618
- msgstr ""
619
 
620
  #: ../includes/views/metaboxes/optional-form-settings.php:50
621
  #: ../includes/views/tabs/admin-forms-general-settings.php:94
@@ -624,12 +673,15 @@ msgid ""
624
  "provided instead of adding the provided groups to the member's interest "
625
  "groups (only when updating a subscriber)."
626
  msgstr ""
 
 
 
627
 
628
  #: ../includes/views/metaboxes/optional-form-settings.php:55
629
  #: ../includes/views/pages/admin-checkbox-settings.php:57
630
  #: ../includes/views/tabs/admin-forms-general-settings.php:66
631
  msgid "Send Welcome Email?"
632
- msgstr ""
633
 
634
  #: ../includes/views/metaboxes/optional-form-settings.php:64
635
  #: ../includes/views/pages/admin-checkbox-settings.php:64
@@ -638,35 +690,40 @@ msgid ""
638
  "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
639
  "succeeds (only when double opt-in is disabled)."
640
  msgstr ""
 
 
641
 
642
  #: ../includes/views/metaboxes/optional-form-settings.php:69
643
  msgid "Form Settings & Messages"
644
- msgstr ""
645
 
646
  #: ../includes/views/metaboxes/optional-form-settings.php:72
647
  #: ../includes/views/tabs/admin-forms-general-settings.php:103
648
  msgid "Enable AJAX form submission?"
649
- msgstr ""
650
 
651
  #: ../includes/views/metaboxes/optional-form-settings.php:80
652
  #: ../includes/views/tabs/admin-forms-general-settings.php:105
653
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
654
  msgstr ""
 
 
655
 
656
  #: ../includes/views/metaboxes/optional-form-settings.php:84
657
  #: ../includes/views/tabs/admin-forms-general-settings.php:108
658
  msgid "Hide form after a successful sign-up?"
659
- msgstr ""
660
 
661
  #: ../includes/views/metaboxes/optional-form-settings.php:93
662
  #: ../includes/views/tabs/admin-forms-general-settings.php:110
663
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
664
  msgstr ""
 
665
 
666
  #: ../includes/views/metaboxes/optional-form-settings.php:97
667
  #: ../includes/views/tabs/admin-forms-general-settings.php:113
668
  msgid "Redirect to URL after successful sign-ups"
669
- msgstr ""
670
 
671
  #: ../includes/views/metaboxes/optional-form-settings.php:100
672
  #: ../includes/views/tabs/admin-forms-general-settings.php:116
@@ -674,184 +731,197 @@ msgid ""
674
  "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
675
  "including <code>http://</code>"
676
  msgstr ""
 
 
677
 
678
  #: ../includes/views/metaboxes/optional-form-settings.php:104
679
  msgid "Send an email copy of the form data?"
680
- msgstr ""
681
 
682
  #: ../includes/views/metaboxes/optional-form-settings.php:108
683
  msgid ""
684
  "Tick \"yes\" if you want to receive an email with the form data for every "
685
  "sign-up request."
686
  msgstr ""
 
 
687
 
688
  #: ../includes/views/metaboxes/optional-form-settings.php:111
689
  msgid "Send the copy to this email:"
690
- msgstr ""
691
 
692
  #: ../includes/views/metaboxes/optional-form-settings.php:117
693
  #: ../includes/views/tabs/admin-forms-general-settings.php:119
694
  msgid "Success message"
695
- msgstr ""
696
 
697
  #: ../includes/views/metaboxes/optional-form-settings.php:121
698
  #: ../includes/views/tabs/admin-forms-general-settings.php:124
699
  msgid "Invalid email address message"
700
- msgstr ""
701
 
702
  #: ../includes/views/metaboxes/optional-form-settings.php:125
703
  #: ../includes/views/tabs/admin-forms-general-settings.php:128
704
  msgid "Required field missing message"
705
- msgstr ""
706
 
707
  #: ../includes/views/metaboxes/optional-form-settings.php:129
708
  #: ../includes/views/tabs/admin-forms-general-settings.php:132
709
  msgid "Already subscribed message"
710
- msgstr ""
711
 
712
  #: ../includes/views/metaboxes/optional-form-settings.php:134
713
  #: ../includes/views/tabs/admin-forms-general-settings.php:138
714
  msgid "Invalid CAPTCHA message"
715
- msgstr ""
716
 
717
  #: ../includes/views/metaboxes/optional-form-settings.php:139
718
  #: ../includes/views/tabs/admin-forms-general-settings.php:143
719
  msgid "General error message"
720
- msgstr ""
721
 
722
  #: ../includes/views/metaboxes/optional-form-settings.php:145
723
  #: ../includes/views/tabs/admin-forms-general-settings.php:148
724
  #, php-format
725
  msgid "HTML tags like %s are allowed in the message fields."
726
- msgstr ""
727
 
728
  #: ../includes/views/metaboxes/required-form-settings.php:14
729
  msgid "Lists this form subscribes to"
730
- msgstr ""
731
 
732
  #: ../includes/views/metaboxes/required-form-settings.php:17
733
  #: ../includes/views/pages/admin-checkbox-settings.php:38
734
  #, php-format
735
  msgid "No lists found, %sare you connected to MailChimp?%s"
736
- msgstr ""
737
 
738
  #: ../includes/views/metaboxes/required-form-settings.php:29
739
  msgid "Add a new field"
740
- msgstr ""
741
 
742
  #: ../includes/views/metaboxes/required-form-settings.php:32
743
  msgid "Select MailChimp field.."
744
- msgstr ""
745
 
746
  #: ../includes/views/metaboxes/required-form-settings.php:36
747
  msgid "Submit Button"
748
- msgstr ""
749
 
750
  #: ../includes/views/metaboxes/required-form-settings.php:37
751
  msgid "Lists Choice"
752
- msgstr ""
753
 
754
  #: ../includes/views/metaboxes/required-form-settings.php:45
755
  msgid "Label"
756
- msgstr ""
757
 
758
  #: ../includes/views/metaboxes/required-form-settings.php:45
759
  #: ../includes/views/metaboxes/required-form-settings.php:50
760
  #: ../includes/views/metaboxes/required-form-settings.php:55
761
  msgid "(optional)"
762
- msgstr ""
763
 
764
  #: ../includes/views/metaboxes/required-form-settings.php:50
765
  msgid "Placeholder"
766
- msgstr ""
767
 
768
  #: ../includes/views/metaboxes/required-form-settings.php:55
769
  msgid "Initial value"
770
- msgstr ""
771
 
772
  #: ../includes/views/metaboxes/required-form-settings.php:60
773
  msgid "Labels"
774
- msgstr ""
775
 
776
  #: ../includes/views/metaboxes/required-form-settings.php:60
777
  msgid "(leave empty to hide)"
778
- msgstr ""
779
 
780
  #: ../includes/views/metaboxes/required-form-settings.php:65
781
  #, php-format
782
  msgid "Wrap in paragraph %s tags?"
783
- msgstr ""
784
 
785
  #: ../includes/views/metaboxes/required-form-settings.php:69
786
  msgid "Required field?"
787
- msgstr ""
788
 
789
  #: ../includes/views/metaboxes/required-form-settings.php:73
790
  msgid "Add to form"
791
- msgstr ""
792
 
793
  #: ../includes/views/metaboxes/required-form-settings.php:77
794
  msgid "Generated HTML"
795
- msgstr ""
796
 
797
  #: ../includes/views/metaboxes/required-form-settings.php:86
798
  msgid "Form usage"
799
- msgstr ""
800
 
801
  #: ../includes/views/metaboxes/required-form-settings.php:87
802
  #, php-format
803
  msgid ""
804
  "Use the shortcode %s to display this form inside a post, page or text widget."
805
  msgstr ""
 
 
806
 
807
  #: ../includes/views/pages/admin-checkbox-settings.php:11
808
  #: ../includes/views/pages/admin-form-settings.php:10
809
  #: ../includes/views/pages/admin-general-settings.php:10
810
  #: ../includes/views/pages/admin-reports.php:10
811
  msgid "MailChimp for WordPress"
812
- msgstr ""
813
 
814
  #: ../includes/views/pages/admin-checkbox-settings.php:11
815
  msgid "Checkbox Settings"
816
- msgstr ""
817
 
818
  #: ../includes/views/pages/admin-checkbox-settings.php:14
819
  msgid ""
820
  "To use sign-up checkboxes, select at least one list and one form to add the "
821
  "checkbox to."
822
  msgstr ""
 
 
823
 
824
  #: ../includes/views/pages/admin-checkbox-settings.php:21
825
  msgid "MailChimp settings for checkboxes"
826
- msgstr ""
827
 
828
  #: ../includes/views/pages/admin-checkbox-settings.php:26
829
  msgid ""
830
  "If you want to use sign-up checkboxes, select at least one MailChimp list to "
831
  "subscribe people to."
832
  msgstr ""
 
 
833
 
834
  #: ../includes/views/pages/admin-checkbox-settings.php:34
835
  msgid "MailChimp Lists"
836
- msgstr ""
837
 
838
  #: ../includes/views/pages/admin-checkbox-settings.php:45
839
  msgid ""
840
  "Select the list(s) to which people who check the checkbox should be "
841
  "subscribed."
842
  msgstr ""
 
843
 
844
  #: ../includes/views/pages/admin-checkbox-settings.php:68
845
  msgid "Checkbox settings"
846
- msgstr ""
847
 
848
  #: ../includes/views/pages/admin-checkbox-settings.php:71
849
  msgid "Add the checkbox to these forms"
850
- msgstr ""
851
 
852
  #: ../includes/views/pages/admin-checkbox-settings.php:78
853
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
854
  msgstr ""
 
 
855
 
856
  #: ../includes/views/pages/admin-checkbox-settings.php:85
857
  #, php-format
@@ -859,85 +929,89 @@ msgid ""
859
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
860
  "forms.</p>"
861
  msgstr ""
 
 
862
 
863
  #: ../includes/views/pages/admin-checkbox-settings.php:90
864
  msgid "Checkbox label text"
865
- msgstr ""
866
 
867
  #: ../includes/views/pages/admin-checkbox-settings.php:93
868
  #: ../includes/views/pages/admin-checkbox-settings.php:123
869
  #, php-format
870
  msgid "HTML tags like %s are allowed in the label text."
871
- msgstr ""
872
 
873
  #: ../includes/views/pages/admin-checkbox-settings.php:97
874
  msgid "Pre-check the checkbox?"
875
- msgstr ""
876
 
877
  #: ../includes/views/pages/admin-checkbox-settings.php:102
878
  msgid "Load some default CSS?"
879
- msgstr ""
880
 
881
  #: ../includes/views/pages/admin-checkbox-settings.php:104
882
  msgid "Select \"yes\" if the checkbox appears in a weird place."
883
- msgstr ""
884
 
885
  #: ../includes/views/pages/admin-checkbox-settings.php:108
886
  #: ../includes/views/pages/admin-checkbox-settings.php:128
887
  #: ../includes/views/tabs/admin-forms-general-settings.php:48
888
  #: ../includes/views/tabs/admin-forms-general-settings.php:152
889
  msgid "Save all changes"
890
- msgstr ""
891
 
892
  #: ../includes/views/pages/admin-checkbox-settings.php:111
893
  msgid "Custom label texts"
894
- msgstr ""
895
 
896
  #: ../includes/views/pages/admin-checkbox-settings.php:112
897
  msgid ""
898
  "Override the default checkbox label text for any given checkbox using the "
899
  "fields below."
900
  msgstr ""
 
 
901
 
902
  #: ../includes/views/pages/admin-form-settings.php:13
903
  msgid "Forms & Settings"
904
- msgstr ""
905
 
906
  #: ../includes/views/pages/admin-form-settings.php:14
907
  msgid "CSS Styles Builder"
908
- msgstr ""
909
 
910
  #: ../includes/views/pages/admin-general-settings.php:10
911
  msgid "License & API Settings"
912
- msgstr ""
913
 
914
  #: ../includes/views/pages/admin-general-settings.php:19
915
  msgid "API Settings"
916
- msgstr ""
917
 
918
  #: ../includes/views/pages/admin-general-settings.php:21
919
  msgid "CONNECTED"
920
- msgstr ""
921
 
922
  #: ../includes/views/pages/admin-general-settings.php:23
923
  msgid "NOT CONNECTED"
924
- msgstr ""
925
 
926
  #: ../includes/views/pages/admin-general-settings.php:29
927
  msgid "API Key"
928
- msgstr ""
929
 
930
  #: ../includes/views/pages/admin-general-settings.php:31
931
  msgid "Your MailChimp API key"
932
- msgstr ""
933
 
934
  #: ../includes/views/pages/admin-general-settings.php:32
935
  msgid "Get your API key here."
936
- msgstr ""
937
 
938
  #: ../includes/views/pages/admin-general-settings.php:48
939
  msgid "MailChimp Data"
940
- msgstr ""
941
 
942
  #: ../includes/views/pages/admin-general-settings.php:49
943
  msgid ""
@@ -945,23 +1019,26 @@ msgid ""
945
  "your MailChimp lists, please use the following button to renew your cached "
946
  "data."
947
  msgstr ""
 
 
 
948
 
949
  #: ../includes/views/pages/admin-general-settings.php:55
950
  #: ../includes/views/pages/admin-general-settings.php:126
951
  msgid "Renew MailChimp lists"
952
- msgstr ""
953
 
954
  #: ../includes/views/pages/admin-general-settings.php:113
955
  msgid "No lists were found in your MailChimp account."
956
- msgstr ""
957
 
958
  #: ../includes/views/pages/admin-reports.php:14
959
  msgid "Statistics"
960
- msgstr ""
961
 
962
  #: ../includes/views/pages/admin-reports.php:15
963
  msgid "Log"
964
- msgstr ""
965
 
966
  #: ../includes/views/parts/admin-footer.php:9
967
  #, php-format
@@ -969,128 +1046,134 @@ msgid ""
969
  "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
970
  "email me directly at <a href=\"%s\">support@dannyvankooten.com</a>."
971
  msgstr ""
 
 
972
 
973
  #: ../includes/views/parts/admin-text-variables.php:13
974
  msgid "Replaced with the form response (error or success messages)."
975
- msgstr ""
976
 
977
  #: ../includes/views/parts/admin-text-variables.php:18
978
  msgid "Replaced with a captcha field."
979
- msgstr ""
980
 
981
  #: ../includes/views/parts/admin-text-variables.php:23
982
  msgid "Replaced with the number of subscribers on the selected list(s)"
983
- msgstr ""
984
 
985
  #: ../includes/views/parts/admin-text-variables.php:27
986
  #, php-format
987
  msgid "Replaced with the current site language, eg: %s"
988
- msgstr ""
989
 
990
  #: ../includes/views/parts/admin-text-variables.php:31
991
  msgid "Replaced with the visitor's IP address"
992
- msgstr ""
993
 
994
  #: ../includes/views/parts/admin-text-variables.php:35
995
  #, php-format
996
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
997
- msgstr ""
998
 
999
  #: ../includes/views/parts/admin-text-variables.php:39
1000
  #, php-format
1001
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
1002
- msgstr ""
1003
 
1004
  #: ../includes/views/parts/admin-text-variables.php:43
1005
  msgid ""
1006
  "Replaced with the logged in user's email (or nothing, if there is no logged "
1007
  "in user)"
1008
  msgstr ""
 
 
1009
 
1010
  #: ../includes/views/parts/admin-text-variables.php:47
1011
  msgid "First name of the current user"
1012
- msgstr ""
1013
 
1014
  #: ../includes/views/parts/admin-text-variables.php:51
1015
  msgid "Last name of the current user"
1016
- msgstr ""
1017
 
1018
  #: ../includes/views/parts/admin-text-variables.php:55
1019
  msgid "Current user ID"
1020
- msgstr ""
1021
 
1022
  #: ../includes/views/parts/admin-text-variables.php:59
1023
  msgid "Current URL"
1024
- msgstr ""
1025
 
1026
  #: ../includes/views/tabs/admin-forms-css-builder.php:10
1027
  msgid "Use the fields below to create custom styling rules for your forms."
1028
  msgstr ""
 
 
1029
 
1030
  #: ../includes/views/tabs/admin-forms-css-builder.php:214
1031
  msgid "Build CSS File"
1032
- msgstr ""
1033
 
1034
  #: ../includes/views/tabs/admin-forms-css-builder.php:230
1035
  #, php-format
1036
  msgid "Please <a href=\"%s\">create at least 1 form</a> first."
1037
- msgstr ""
1038
 
1039
  #: ../includes/views/tabs/admin-forms-css-builder.php:232
1040
  msgid "Select form for preview"
1041
- msgstr ""
1042
 
1043
  #: ../includes/views/tabs/admin-forms-general-settings.php:8
1044
  msgid "Sign-Up Forms"
1045
- msgstr ""
1046
 
1047
  #: ../includes/views/tabs/admin-forms-general-settings.php:8
1048
  msgid "Create New Form"
1049
- msgstr ""
1050
 
1051
  #: ../includes/views/tabs/admin-forms-general-settings.php:16
1052
  msgid "General form settings"
1053
- msgstr ""
1054
 
1055
  #: ../includes/views/tabs/admin-forms-general-settings.php:19
1056
  msgid "Load form styles (CSS)?"
1057
- msgstr ""
1058
 
1059
  #: ../includes/views/tabs/admin-forms-general-settings.php:23
1060
  msgid "Yes, load basic form styles"
1061
- msgstr ""
1062
 
1063
  #: ../includes/views/tabs/admin-forms-general-settings.php:24
1064
  msgid "Yes, load my custom form styles"
1065
- msgstr ""
1066
 
1067
  #: ../includes/views/tabs/admin-forms-general-settings.php:25
1068
  msgid "Yes, load default form theme"
1069
- msgstr ""
1070
 
1071
  #: ../includes/views/tabs/admin-forms-general-settings.php:26
1072
  msgid "Light Theme"
1073
- msgstr ""
1074
 
1075
  #: ../includes/views/tabs/admin-forms-general-settings.php:27
1076
  msgid "Red Theme"
1077
- msgstr ""
1078
 
1079
  #: ../includes/views/tabs/admin-forms-general-settings.php:28
1080
  msgid "Green Theme"
1081
- msgstr ""
1082
 
1083
  #: ../includes/views/tabs/admin-forms-general-settings.php:29
1084
  msgid "Blue Theme"
1085
- msgstr ""
1086
 
1087
  #: ../includes/views/tabs/admin-forms-general-settings.php:30
1088
  msgid "Dark Theme"
1089
- msgstr ""
1090
 
1091
  #: ../includes/views/tabs/admin-forms-general-settings.php:31
1092
  msgid "Custom Color Theme"
1093
- msgstr ""
1094
 
1095
  #: ../includes/views/tabs/admin-forms-general-settings.php:36
1096
  #, php-format
@@ -1099,14 +1182,17 @@ msgid ""
1099
  "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
1100
  "of the default themes."
1101
  msgstr ""
 
 
 
1102
 
1103
  #: ../includes/views/tabs/admin-forms-general-settings.php:40
1104
  msgid "Select Color"
1105
- msgstr ""
1106
 
1107
  #: ../includes/views/tabs/admin-forms-general-settings.php:50
1108
  msgid "Default MailChimp settings"
1109
- msgstr ""
1110
 
1111
  #: ../includes/views/tabs/admin-forms-general-settings.php:51
1112
  #: ../includes/views/tabs/admin-forms-general-settings.php:99
@@ -1114,7 +1200,10 @@ msgid ""
1114
  "The following settings apply to <strong>all</strong> forms but can be "
1115
  "overridden on a per-form basis."
1116
  msgstr ""
 
 
1117
 
1118
  #: ../includes/views/tabs/admin-forms-general-settings.php:98
1119
  msgid "Default form settings"
1120
- msgstr ""
 
2
  msgstr ""
3
  "Project-Id-Version: MailChimp for WordPress\n"
4
  "POT-Creation-Date: 2014-08-12 15:11+0100\n"
5
+ "PO-Revision-Date: 2014-09-06 01:25+0100\n"
6
+ "Last-Translator: Henrich Kőszegi <info@webworks.sk>\n"
7
  "Language-Team: Danny van Kooten <hi@dannyvankooten.com>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.6.8\n"
12
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
+ "Language: sk_SK\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
  #: ../includes/admin/class-admin.php:183
19
  msgid "Settings"
20
+ msgstr "Nastavenia"
21
 
22
  #: ../includes/admin/class-admin.php:202
23
  msgid "Documentation"
24
+ msgstr "Dokumentácia"
25
 
26
  #: ../includes/admin/class-admin.php:245
27
  msgid "Save Form"
28
+ msgstr "Uložiť formulár"
29
 
30
  #: ../includes/admin/class-admin.php:249
31
  msgid "Update Form"
32
+ msgstr "Aktualizovať formulár"
33
 
34
  #: ../includes/admin/class-admin.php:282
35
  msgid "Your email address"
36
+ msgstr "Vaša e-mailová adresa"
37
 
38
  #: ../includes/admin/class-admin.php:283
39
  msgid "Email address"
40
+ msgstr "E-mailová adresa"
41
 
42
  #: ../includes/admin/class-admin.php:284
43
  msgid "Sign up"
44
+ msgstr "Zaregistrovať sa"
45
 
46
  #: ../includes/admin/class-admin.php:300
47
  msgid "Back to general form settings"
48
+ msgstr "Späť na všeobecné nastavenia formulára"
49
 
50
  #: ../includes/admin/class-admin.php:302
51
  msgid "Form updated."
52
+ msgstr "Formulár sa aktualizoval."
53
 
54
  #: ../includes/admin/class-admin.php:303
55
  msgid "Form saved."
56
+ msgstr "Formulár bol uložený."
57
 
58
  #: ../includes/admin/class-admin.php:311
59
  #, php-format
60
  msgid "An EMAIL field. Example: <code>%s</code>"
61
+ msgstr "Pole E-MAIL. Príklad: <code>%s</code>"
62
 
63
  #: ../includes/admin/class-admin.php:317
64
  #, php-format
65
  msgid "A submit button. Example: <code>%s</code>"
66
+ msgstr "Potvrdzovacie tlačidlo. Príklad: <code>%s</code>"
67
 
68
  #: ../includes/admin/class-admin.php:317
69
  msgid "Sign Up"
70
+ msgstr "Registrácia"
71
 
72
  #: ../includes/admin/class-admin.php:345
73
  #, php-format
74
  msgid "A '%s' field"
75
+ msgstr "Pole '%s'"
76
 
77
  #: ../includes/admin/class-admin.php:357
78
  msgid "Your form is missing the following (required) form fields:"
79
+ msgstr "Vo Vašom formulári chýbajú nasledujúce (povinné) polia:"
80
 
81
  #: ../includes/admin/class-admin.php:429
82
  msgid "Form Settings"
83
+ msgstr "Nastavenia formulára"
84
 
85
  #: ../includes/admin/class-admin.php:430
86
  msgid "Optional Settings"
87
+ msgstr "Voliteľné nastavenia"
88
 
89
  #: ../includes/admin/class-admin.php:431
90
  msgid "Form Variables"
91
+ msgstr "Premenné formulára"
92
 
93
  #: ../includes/admin/class-admin.php:465
94
  msgid "Use the following variables to add some dynamic content to your form."
95
  msgstr ""
96
+ "Použite nasledujúce premenné na pridanie dynamického obsahu do formulára."
97
 
98
  #: ../includes/admin/class-admin.php:547
99
  msgid "MailChimp & License"
100
+ msgstr "MailChimp a licencia"
101
 
102
  #: ../includes/admin/class-admin.php:548
103
  msgid "Checkboxes"
104
+ msgstr "Zaškrtávacie políčka"
105
 
106
  #: ../includes/admin/class-admin.php:549
107
  #: ../includes/tables/class-forms-table.php:20
108
  #: ../includes/views/pages/admin-form-settings.php:10
109
  msgid "Forms"
110
+ msgstr "Formuláre"
111
 
112
  #: ../includes/admin/class-admin.php:550
113
  #: ../includes/views/pages/admin-reports.php:10
114
  msgid "Reports"
115
+ msgstr "Správy"
116
 
117
  #: ../includes/admin/class-admin.php:634
118
  msgid "Comment form"
119
+ msgstr "Komentárový formulár"
120
 
121
  #: ../includes/admin/class-admin.php:635
122
  msgid "Registration form"
123
+ msgstr "Registračný formulár"
124
 
125
  #: ../includes/admin/class-admin.php:639
126
  msgid "MultiSite forms"
127
+ msgstr "MultiSite formuláre"
128
 
129
  #: ../includes/admin/class-admin.php:643
130
  #: ../includes/tables/class-log-table.php:212
131
  msgid "BuddyPress registration"
132
+ msgstr "BuddyPress registrácia"
133
 
134
  #: ../includes/admin/class-admin.php:651 ../includes/admin/class-admin.php:655
135
  #, php-format
136
  msgid "%s checkout"
137
+ msgstr "%s pokladňa"
138
 
139
  #: ../includes/admin/class-admin.php:689
140
  #, php-format
142
  "Please make sure the plugin is connected to MailChimp. <a href=\"%s"
143
  "\">Provide a valid API key.</a>"
144
  msgstr ""
145
+ "Prosím uistite sa, že rozšírenie je pripojené k MailChimpu. <a href=\"%s"
146
+ "\">Zadajte platný API kľúč.</a>"
147
 
148
  #: ../includes/admin/class-admin.php:699
149
  msgid "Renewed MailChimp cache."
150
+ msgstr "Vyrovnávacia pamäť MailChimpu bola obnovená."
151
 
152
  #: ../includes/admin/class-admin.php:701
153
  msgid "Failed to renew MailChimp cache - please try again later."
154
  msgstr ""
155
+ "Nepodarilo sa obnoviť vyrovnávaciu pamäť MailChimpu - skúste to znova neskôr."
156
 
157
  #: ../includes/admin/class-admin.php:779
158
  msgid "End date can't be before the start date"
159
+ msgstr "Dátum ukončenia nemôže byť pred dátumom začatia"
160
 
161
  #: ../includes/admin/class-admin.php:811
162
  #, php-format
164
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
165
  "page."
166
  msgstr ""
167
+ "Zakázali ste zapisovanie pomocou filtra %s. Znovu ho povoľte, aby ste mohli "
168
+ "používať stránku Správ."
169
 
170
  #: ../includes/admin/class-admin.php:827
171
  #, php-format
174
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
175
  "it now</a> to prevent problems"
176
  msgstr ""
177
+ "<strong>Vitajte na MailChimp pre WordPress Pro!</strong> Prevzali sme Vaše "
178
+ "nastavenia z Lite verzie, prosím <a href=\"%s\">deaktivujte ju teraz</a>, "
179
+ "aby sa zabránilo problémom"
180
 
181
  #: ../includes/admin/class-css-builder.php:270
182
  #, php-format
184
  "Couldn't create the stylesheet. Manually add the generated CSS to your theme "
185
  "stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
186
  msgstr ""
187
+ "Nepodarilo sa vytvoriť štýly. Pridajte si vytvorené CSS do Vašich štýlov "
188
+ "ručne pomocou %sEditora tém%s, alebo použite FTP a editujte <em>%s</em>."
189
 
190
  #: ../includes/admin/class-css-builder.php:271
191
  #, php-format
192
  msgid "%sShow generated CSS%s"
193
+ msgstr "%sZobraziť vygenerované CSS%s"
194
 
195
  #: ../includes/admin/class-css-builder.php:281
196
  #, php-format
198
  "To apply these styles on your website, select \"load custom form styles\" in "
199
  "the %sform settings%s"
200
  msgstr ""
201
+ "Ak si prajete použiť tieto štýly na svojej webovej stránke, vyberte "
202
+ "\"načítať vlastné štýly formulára\" v %snastaveniach formulára%s"
203
 
204
  #: ../includes/admin/class-css-builder.php:282
205
  #, php-format
206
  msgid "The %sCSS Stylesheet%s has been created."
207
+ msgstr "%sCSS štýly%s boli vytvorené."
208
 
209
  #: ../includes/class-form-manager.php:238
210
  #, php-format
211
  msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
212
+ msgstr "<strong>Chyba:</strong> Zadajte prosím ID formulára. Príklad: %s."
213
 
214
  #: ../includes/class-form-manager.php:252
215
  msgid ""
216
  "<strong>Error:</strong> Sign-up form not found. Please check if you used the "
217
  "correct form ID."
218
  msgstr ""
219
+ "<strong>Chyba:</strong> Registračný formulár sa nenašiel. Skontrolujte, či "
220
+ "ste zadali správne ID formulára."
221
 
222
  #: ../includes/class-form-request.php:453
223
  msgid "New Sign-Up"
224
+ msgstr "Nová registrácia"
225
 
226
  #: ../includes/class-form-request.php:454
227
  #, php-format
228
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
229
+ msgstr "<strong>%s</strong> registrovaný o %s dňa %s pomocou formulára \"%s\"."
230
 
231
  #: ../includes/class-form-request.php:493
232
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
233
  msgstr ""
234
+ "Tento e-mail bol odoslaný automaticky z rozšírenia MailChimp pre WordPress."
235
 
236
  #: ../includes/class-widget.php:20
237
  msgid "MailChimp for WP Form"
238
+ msgstr "MailChimp pre WP formulár"
239
 
240
  #: ../includes/class-widget.php:21
241
  msgid "Displays one of your MailChimp for WordPress sign-up forms"
242
  msgstr ""
243
+ "Zobrazuje jeden z Vašich MailChimp pre WordPress registračných formulárov"
244
 
245
  #: ../includes/class-widget.php:39
246
  #, php-format
248
  "Please select the sign-up form you'd like to show here in the <a href=\"%s"
249
  "\">widget settings</a>."
250
  msgstr ""
251
+ "Zvoľte prosím registračný formulár v <a href=\"%s\">nastaveniach widgetu</"
252
+ "a>, ktorý by ste chceli zobraziť."
253
 
254
  #: ../includes/class-widget.php:68
255
  msgid "Newsletter"
256
+ msgstr "Odber noviniek"
257
 
258
  #: ../includes/class-widget.php:79
259
  msgid "Title:"
260
+ msgstr "Nadpis:"
261
 
262
  #: ../includes/class-widget.php:83
263
  msgid "Form:"
264
+ msgstr "Formulár:"
265
 
266
  #: ../includes/class-widget.php:85
267
  msgid "Select the form to show"
268
+ msgstr "Zvoľte formulár, ktorý chcete zobraziť"
269
 
270
  #: ../includes/class-widget.php:93
271
  #, php-format
272
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
273
  msgstr ""
274
+ "Nemáte žiadne registračné formuláre. <a href=\"%s\">Vytvoriť teraz.</a>"
275
 
276
  #: ../includes/functions/general.php:20
277
  msgid "Sign me up for the newsletter!"
278
+ msgstr "Prihlásiť ma na odber noviniek!"
279
 
280
  #: ../includes/functions/general.php:42
281
  msgid ""
282
  "Thank you, your sign-up request was successful! Please check your email "
283
  "inbox to confirm."
284
  msgstr ""
285
+ "Ďakujeme, Vaša požiadavka o registráciu prebehla úspešne! Skontrolujte si "
286
+ "prosím Vašu e-mailovú schránku pre jej potvrdenie."
287
 
288
  #: ../includes/functions/general.php:43
289
  msgid "Oops. Something went wrong. Please try again later."
290
+ msgstr "Ups. Niečo sa pokazilo. Skúste to znova neskôr."
291
 
292
  #: ../includes/functions/general.php:44
293
  msgid "Please provide a valid email address."
294
+ msgstr "Prosím, zadajte platnú e-mailovú adresu."
295
 
296
  #: ../includes/functions/general.php:45
297
  msgid "Given email address is already subscribed, thank you!"
298
+ msgstr "Zadaná e-mailová adresa je už prihlásená na odber, ďakujeme!"
299
 
300
  #: ../includes/functions/general.php:46
301
  msgid "Please complete the CAPTCHA."
302
+ msgstr "Prosím, opíšte kód CAPTCHA."
303
 
304
  #: ../includes/functions/general.php:47
305
  msgid "Please fill in the required fields."
306
+ msgstr "Prosím, vyplňte povinné polia."
307
 
308
  #: ../includes/integrations/class-cf7.php:44
309
  #: ../includes/views/metaboxes/optional-form-settings.php:16
324
  #: ../includes/views/tabs/admin-forms-general-settings.php:104
325
  #: ../includes/views/tabs/admin-forms-general-settings.php:109
326
  msgid "Yes"
327
+ msgstr "Áno"
328
 
329
  #: ../includes/integrations/class-cf7.php:44
330
  #: ../includes/views/metaboxes/optional-form-settings.php:18
346
  #: ../includes/views/tabs/admin-forms-general-settings.php:104
347
  #: ../includes/views/tabs/admin-forms-general-settings.php:109
348
  msgid "No"
349
+ msgstr "Nie"
350
 
351
  #: ../includes/library/license-manager/class-license-manager.php:158
352
  #, php-format
354
  "<b>Warning!</b> You're blocking external requests which means you won't be "
355
  "able to get %s updates. Please add %s to %s."
356
  msgstr ""
357
+ "<b>Upozornenie!</b> Blokujete vonkajšie požiadavky, čo znamená, že nebudete "
358
+ "môcť prijímať %s aktualizácie. Pridajte prosím %s do %s."
359
 
360
  #: ../includes/library/license-manager/class-license-manager.php:201
361
  #, php-format
362
  msgid "Your %s license has been activated. You have an unlimited license. "
363
+ msgstr "Vaša %s licencia bola aktivovaná. Máte neobmedzenú licenciu."
364
 
365
  #: ../includes/library/license-manager/class-license-manager.php:203
366
  #, php-format
367
  msgid "Your %s license has been activated. You have used %d/%d activations. "
368
+ msgstr "Vaša %s licencia bola aktivovaná. Použili ste %d/%d aktivácií."
369
 
370
  #: ../includes/library/license-manager/class-license-manager.php:208
371
  #, php-format
372
  msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
373
+ msgstr "<a href=\"%s\">Vedeli ste, že Vašu licenciu môžete aktualizovať?</a>"
374
 
375
  #: ../includes/library/license-manager/class-license-manager.php:212
376
  #, php-format
378
  "<a href=\"%s\">Your license is expiring in %d days, would you like to extend "
379
  "it?</a>"
380
  msgstr ""
381
+ "<a href=\"%s\">Vaša licencia vyprší za % dní, prajete si ju predĺžiť?</a>"
382
 
383
  #: ../includes/library/license-manager/class-license-manager.php:221
384
  #, php-format
386
  "You've reached your activation limit. You must <a href=\"%s\">upgrade your "
387
  "license</a> to use it on this site."
388
  msgstr ""
389
+ "Dosiahli ste aktivačný limit. Musíte si <a href=\"%s\">obnoviť Vašu "
390
+ "licenciu</a>pre ďalšie použitie na tejto stránke."
391
 
392
  #: ../includes/library/license-manager/class-license-manager.php:224
393
  #, php-format
395
  "Your license has expired. You must <a href=\"%s\">extend your license</a> in "
396
  "order to use it again."
397
  msgstr ""
398
+ "Vaša licencia vypršala. Musíte jej <a href=\"%s\">platnosť predĺžiť</a> pre "
399
+ "ďalšie používanie."
400
 
401
  #: ../includes/library/license-manager/class-license-manager.php:227
402
  msgid "Failed to activate your license, your license key seems to be invalid."
403
  msgstr ""
404
+ "Aktivácia Vašej licencie zlyhala. Zdá sa, že licenčný kľúč je neplatný."
405
 
406
  #: ../includes/library/license-manager/class-license-manager.php:251
407
  #, php-format
408
  msgid "Your %s license has been deactivated."
409
+ msgstr "Vaša %s licencia bola deaktivovaná."
410
 
411
  #: ../includes/library/license-manager/class-license-manager.php:253
412
  #, php-format
413
  msgid "Failed to deactivate your %s license."
414
+ msgstr "Deaktivácia Vašej licencie %s zlyhala."
415
 
416
  #: ../includes/library/license-manager/class-license-manager.php:289
417
  #, php-format
418
  msgid "Request error: \"%s\""
419
+ msgstr "Chyba požiadavky: \"%s\""
420
 
421
  #: ../includes/library/license-manager/class-license-manager.php:447
422
  #, php-format
423
  msgid "%s: License Settings"
424
+ msgstr "%s: Nastavenia licencie"
425
 
426
  #: ../includes/library/license-manager/class-plugin-license-manager.php:67
427
  #, php-format
429
  "%s is network activated, please contact your site administrator to manage "
430
  "the license."
431
  msgstr ""
432
+ "%s je sieť aktivovaná, obráťte sa prosím na správcu Vašej stránky ohľadom "
433
+ "správy licencie."
434
 
435
  #: ../includes/library/license-manager/class-update-manager.php:69
436
  #, php-format
437
  msgid ""
438
  "%s failed to check for updates because of the following error: <em>%s</em>"
439
  msgstr ""
440
+ "%s sa nepodarilo skontrolovať aktualizácie z dôvodu nasledujúcej chyby: <em>"
441
+ "%s</em>"
442
 
443
  #: ../includes/library/license-manager/class-update-manager.php:138
444
  msgid ""
445
+ "This site has not been activated properly on dannyvankooten.com and thus "
446
  "cannot check for future updates. Please activate your site with a valid "
447
  "license key."
448
  msgstr ""
449
+ "Táto stránka nebola riadne aktivovaná na dannyvankooten.com a preto nebude "
450
+ "možné prijímať budúce aktualizácie. Aktivujte si prosím Vašu stránku s "
451
+ "platným licenčným kľúčom."
452
 
453
  #: ../includes/library/license-manager/views/form.php:23
454
  msgid "License status"
455
+ msgstr "Stav licencie"
456
 
457
  #: ../includes/library/license-manager/views/form.php:33
458
  msgid "Toggle license status"
459
+ msgstr "Prepnúť stav licencie"
460
 
461
  #: ../includes/library/license-manager/views/form.php:38
462
  msgid ""
463
  "(deactivate your license so you can activate it on another WordPress site)"
464
  msgstr ""
465
+ "(deaktivujte Vašu licenciu, aby ste ju mohli znova aktivovať na inej "
466
+ "WordPress stránke)"
467
 
468
  #: ../includes/library/license-manager/views/form.php:44
469
  msgid "Please enter a license key in the field below first."
470
+ msgstr "Prosím, zadajte licenčný kľúč do poľa nižšie."
471
 
472
  #: ../includes/library/license-manager/views/form.php:52
473
  msgid "License Key"
474
+ msgstr "Licenčný kľúč"
475
 
476
  #: ../includes/library/license-manager/views/form.php:54
477
  msgid "Paste your license key here, as found in the email receipt."
478
+ msgstr "Sem vložte Váš licenčný kľúč, ktorý ste obdržali e-mailom."
479
 
480
  #: ../includes/library/license-manager/views/form.php:56
481
  #, php-format
482
  msgid "You defined your license key using the %s PHP constant."
483
+ msgstr "Vašu licenciu ste zadefinovali pomocou %s PHP konštanty."
484
 
485
  #: ../includes/library/license-manager/views/form.php:73
486
  #, php-format
487
  msgid "Your %s license will expire on %s."
488
+ msgstr "Platnosť %s Vašej licencie vyprší dňa %s."
489
 
490
  #: ../includes/library/license-manager/views/form.php:76
491
  #, php-format
492
  msgid "%sRenew your license now%s."
493
+ msgstr "%sObnovte si Vašu licenciu teraz%s."
494
 
495
  #: ../includes/tables/class-forms-table.php:19
496
  #: ../includes/tables/class-forms-table.php:36
497
  #: ../includes/tables/class-log-table.php:207
498
  msgid "Form"
499
+ msgstr "Formulár"
500
 
501
  #: ../includes/tables/class-forms-table.php:35
502
  msgid "ID"
503
+ msgstr "ID"
504
 
505
  #: ../includes/tables/class-forms-table.php:37
506
  msgid "Shortcode"
507
+ msgstr "Shortcode"
508
 
509
  #: ../includes/tables/class-forms-table.php:38
510
  msgid "List(s)"
511
+ msgstr "Zoznam(y)"
512
 
513
  #: ../includes/tables/class-forms-table.php:39
514
  msgid "Last edited"
515
+ msgstr "Naposledy upravené"
516
 
517
  #: ../includes/tables/class-forms-table.php:76
518
  #: ../includes/tables/class-forms-table.php:80
519
  msgid "Edit Form"
520
+ msgstr "Upraviť formulár"
521
 
522
  #: ../includes/tables/class-forms-table.php:77
523
  msgid "Delete"
524
+ msgstr "Vymazať"
525
 
526
  #: ../includes/tables/class-forms-table.php:98
527
  msgid "No MailChimp list(s) selected yet."
528
+ msgstr "Zatiaľ nebol zvolený žiadny MailChimp zoznam."
529
 
530
  #: ../includes/tables/class-forms-table.php:105
531
  msgid "You have not created any sign-up forms yet. Time to do so!"
532
  msgstr ""
533
+ "Zatiaľ ste nevytvorili žiadne registračné formuláre. Teraz je čas vytvoriť "
534
+ "jeden!"
535
 
536
  #: ../includes/tables/class-log-table.php:33
537
  msgid "Subscriber"
538
+ msgstr "Odberateľ"
539
 
540
  #: ../includes/tables/class-log-table.php:34
541
  msgid "Subscribers"
542
+ msgstr "Odberatelia"
543
 
544
  #: ../includes/tables/class-log-table.php:53
545
  msgid "Email"
546
+ msgstr "E-mail"
547
 
548
  #: ../includes/tables/class-log-table.php:54
549
  msgid "List"
550
+ msgstr "Zoznam"
551
 
552
  #: ../includes/tables/class-log-table.php:55
553
  msgid "Type"
554
+ msgstr "Typ"
555
 
556
  #: ../includes/tables/class-log-table.php:56
557
  msgid "Source"
558
+ msgstr "Zdroj"
559
 
560
  #: ../includes/tables/class-log-table.php:57
561
  msgid "Extra data"
562
+ msgstr "Dodatočné údaje"
563
 
564
  #: ../includes/tables/class-log-table.php:58
565
  msgid "Subscribed"
566
+ msgstr "Prihlásený na odber"
567
 
568
  #: ../includes/tables/class-log-table.php:192
569
  #: ../includes/tables/class-log-table.php:196
570
  msgid "Comment"
571
+ msgstr "Komentár"
572
 
573
  #: ../includes/tables/class-log-table.php:192
574
  msgid "deleted"
575
+ msgstr "odstránený"
576
 
577
  #: ../includes/tables/class-log-table.php:200
578
  msgid "Registration"
579
+ msgstr "Registrácia"
580
 
581
  #: ../includes/tables/class-log-table.php:216
582
  msgid "MultiSite registration"
583
+ msgstr "MultiSite registrácia"
584
 
585
  #: ../includes/tables/class-log-table.php:220
586
  #: ../includes/tables/class-log-table.php:224
587
  msgid "Checkout"
588
+ msgstr "Pokladňa"
589
 
590
  #: ../includes/tables/class-log-table.php:229
591
  msgid "Contact Form 7"
592
+ msgstr "Contact Form 7"
593
 
594
  #: ../includes/tables/class-log-table.php:233
595
  msgid "bbPress: New Topic"
596
+ msgstr "bbPress: Nová téma"
597
 
598
  #: ../includes/tables/class-log-table.php:237
599
  msgid "bbPress: New Reply"
600
+ msgstr "bbPress: Nová odpoveď"
601
 
602
  #: ../includes/tables/class-log-table.php:243
603
  msgid "Other Form"
604
+ msgstr "Iný formulár"
605
 
606
  #: ../includes/tables/class-log-table.php:283
607
  msgid "No subscribe requests found."
608
+ msgstr "Nenašli sa žiadne požiadavky na odber."
609
 
610
  #: ../includes/views/metaboxes/optional-form-settings.php:8
611
  #, php-format
614
  "settings</a>. If no setting is specified, the corresponding general setting "
615
  "value will be used."
616
  msgstr ""
617
+ "Nastavenia, ktoré tu zadáte prepíšu <a href=\"%s\">všeobecné nastavenia "
618
+ "formulára</a>. Ak nešpecifikujete žiadne nastavenia, použije sa "
619
+ "zodpovedajúca všeobecne nastavená hodnota."
620
 
621
  #: ../includes/views/metaboxes/optional-form-settings.php:10
622
  msgid "MailChimp Settings"
623
+ msgstr "Nastavenia MailChimpu"
624
 
625
  #: ../includes/views/metaboxes/optional-form-settings.php:13
626
  #: ../includes/views/pages/admin-checkbox-settings.php:51
627
  #: ../includes/views/tabs/admin-forms-general-settings.php:55
628
  msgid "Double opt-in?"
629
+ msgstr "Dvojitý opt-in?"
630
 
631
  #: ../includes/views/metaboxes/optional-form-settings.php:20
632
  #: ../includes/views/metaboxes/optional-form-settings.php:34
635
  #: ../includes/views/metaboxes/optional-form-settings.php:79
636
  #: ../includes/views/metaboxes/optional-form-settings.php:91
637
  msgid "Inherit"
638
+ msgstr "Dediť"
639
 
640
  #: ../includes/views/metaboxes/optional-form-settings.php:22
641
  #: ../includes/views/pages/admin-checkbox-settings.php:53
644
  "Select \"yes\" if you want people to confirm their email address before "
645
  "being subscribed (recommended)"
646
  msgstr ""
647
+ "Zvoľte \"áno\", ak si želáte, aby potvrdenie e-mailovej adresy bolo povinné "
648
+ "pre odberateľov (odporúčané)"
649
 
650
  #: ../includes/views/metaboxes/optional-form-settings.php:27
651
  #: ../includes/views/tabs/admin-forms-general-settings.php:76
652
  msgid "Update existing subscribers?"
653
+ msgstr "Aktualizovať súčasných odberateľov?"
654
 
655
  #: ../includes/views/metaboxes/optional-form-settings.php:36
656
  #: ../includes/views/tabs/admin-forms-general-settings.php:83
658
  "Select \"yes\" if you want to update existing subscribers (instead of "
659
  "showing the \"already subscribed\" message)."
660
  msgstr ""
661
+ "Zvoľte \"áno\", ak si želáte aktualizovať súčasných odberateľov (namiesto "
662
+ "zobrazenia hlásenia \"už ste odberateľom\")."
663
 
664
  #: ../includes/views/metaboxes/optional-form-settings.php:41
665
  #: ../includes/views/tabs/admin-forms-general-settings.php:87
666
  msgid "Replace interest groups?"
667
+ msgstr "Vymeniť záujmové skupiny?"
668
 
669
  #: ../includes/views/metaboxes/optional-form-settings.php:50
670
  #: ../includes/views/tabs/admin-forms-general-settings.php:94
673
  "provided instead of adding the provided groups to the member's interest "
674
  "groups (only when updating a subscriber)."
675
  msgstr ""
676
+ "Zvoľte \"áno\", ak si želáte nahradiť záujmové skupiny poskytovanými "
677
+ "skupinami, namiesto pridania poskytovaných skupín do záujmových skupín člena "
678
+ "(iba pri aktualizácii odberateľa)."
679
 
680
  #: ../includes/views/metaboxes/optional-form-settings.php:55
681
  #: ../includes/views/pages/admin-checkbox-settings.php:57
682
  #: ../includes/views/tabs/admin-forms-general-settings.php:66
683
  msgid "Send Welcome Email?"
684
+ msgstr "Poslať uvítací e-mail?"
685
 
686
  #: ../includes/views/metaboxes/optional-form-settings.php:64
687
  #: ../includes/views/pages/admin-checkbox-settings.php:64
690
  "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
691
  "succeeds (only when double opt-in is disabled)."
692
  msgstr ""
693
+ "Zvoľte \"áno\", ak si želáte poslať Vašim zoznamom uvítací e-mail, keď "
694
+ "prihlásenie na odber bude úspešné (iba ak dvojitý opt-in je zakázaný)."
695
 
696
  #: ../includes/views/metaboxes/optional-form-settings.php:69
697
  msgid "Form Settings & Messages"
698
+ msgstr "Nastavenia formulára a správy"
699
 
700
  #: ../includes/views/metaboxes/optional-form-settings.php:72
701
  #: ../includes/views/tabs/admin-forms-general-settings.php:103
702
  msgid "Enable AJAX form submission?"
703
+ msgstr "Povoliť AJAXové odosielanie formulárov?"
704
 
705
  #: ../includes/views/metaboxes/optional-form-settings.php:80
706
  #: ../includes/views/tabs/admin-forms-general-settings.php:105
707
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
708
  msgstr ""
709
+ "Zvoľte \"áno\", ak si želáte používať AJAX (JavaScript) na odosielanie "
710
+ "formulárov."
711
 
712
  #: ../includes/views/metaboxes/optional-form-settings.php:84
713
  #: ../includes/views/tabs/admin-forms-general-settings.php:108
714
  msgid "Hide form after a successful sign-up?"
715
+ msgstr "Skryť formulár po úspešnej registrácii?"
716
 
717
  #: ../includes/views/metaboxes/optional-form-settings.php:93
718
  #: ../includes/views/tabs/admin-forms-general-settings.php:110
719
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
720
  msgstr ""
721
+ "Zvoľte \"áno\", ak si želáte skryť polia formulára po úspešnej registrácii."
722
 
723
  #: ../includes/views/metaboxes/optional-form-settings.php:97
724
  #: ../includes/views/tabs/admin-forms-general-settings.php:113
725
  msgid "Redirect to URL after successful sign-ups"
726
+ msgstr "Presmerovať na URL po úspešnej registrácii"
727
 
728
  #: ../includes/views/metaboxes/optional-form-settings.php:100
729
  #: ../includes/views/tabs/admin-forms-general-settings.php:116
731
  "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
732
  "including <code>http://</code>"
733
  msgstr ""
734
+ "Ak si neželáte presmerovanie, nechajte prázdne alebo zadajte 0. Používajte "
735
+ "úplné (absolútne) URL adresy, vrátane <code>http://</code>"
736
 
737
  #: ../includes/views/metaboxes/optional-form-settings.php:104
738
  msgid "Send an email copy of the form data?"
739
+ msgstr "Poslať údaje formulára e-mailom?"
740
 
741
  #: ../includes/views/metaboxes/optional-form-settings.php:108
742
  msgid ""
743
  "Tick \"yes\" if you want to receive an email with the form data for every "
744
  "sign-up request."
745
  msgstr ""
746
+ "Zaškrtnite \"áno\", ak si želáte prijať e-mail s údajmi formulára pri každej "
747
+ "požiadavke o registráciu."
748
 
749
  #: ../includes/views/metaboxes/optional-form-settings.php:111
750
  msgid "Send the copy to this email:"
751
+ msgstr "Odoslať kópiu na túto e-mailovú adresu:"
752
 
753
  #: ../includes/views/metaboxes/optional-form-settings.php:117
754
  #: ../includes/views/tabs/admin-forms-general-settings.php:119
755
  msgid "Success message"
756
+ msgstr "Hlásenie o úspešnosti"
757
 
758
  #: ../includes/views/metaboxes/optional-form-settings.php:121
759
  #: ../includes/views/tabs/admin-forms-general-settings.php:124
760
  msgid "Invalid email address message"
761
+ msgstr "Hlásenie o neplatnej e-mailovej adrese"
762
 
763
  #: ../includes/views/metaboxes/optional-form-settings.php:125
764
  #: ../includes/views/tabs/admin-forms-general-settings.php:128
765
  msgid "Required field missing message"
766
+ msgstr "Hlásenie o chýbajúcom povinnom poli"
767
 
768
  #: ../includes/views/metaboxes/optional-form-settings.php:129
769
  #: ../includes/views/tabs/admin-forms-general-settings.php:132
770
  msgid "Already subscribed message"
771
+ msgstr "Hlásenie o už aktívnom odberaní"
772
 
773
  #: ../includes/views/metaboxes/optional-form-settings.php:134
774
  #: ../includes/views/tabs/admin-forms-general-settings.php:138
775
  msgid "Invalid CAPTCHA message"
776
+ msgstr "Hlásenie o neplatnom kóde CAPTCHA"
777
 
778
  #: ../includes/views/metaboxes/optional-form-settings.php:139
779
  #: ../includes/views/tabs/admin-forms-general-settings.php:143
780
  msgid "General error message"
781
+ msgstr "Všeobecné chybové hlásenie"
782
 
783
  #: ../includes/views/metaboxes/optional-form-settings.php:145
784
  #: ../includes/views/tabs/admin-forms-general-settings.php:148
785
  #, php-format
786
  msgid "HTML tags like %s are allowed in the message fields."
787
+ msgstr "HTML značky ako %s sú povolené v poliach správ."
788
 
789
  #: ../includes/views/metaboxes/required-form-settings.php:14
790
  msgid "Lists this form subscribes to"
791
+ msgstr "Zoznamy, ktorých je tento formulár odberateľom"
792
 
793
  #: ../includes/views/metaboxes/required-form-settings.php:17
794
  #: ../includes/views/pages/admin-checkbox-settings.php:38
795
  #, php-format
796
  msgid "No lists found, %sare you connected to MailChimp?%s"
797
+ msgstr "Nenašli sa žiadne zoznamy, %sste pripojený k MailChimpu?%s"
798
 
799
  #: ../includes/views/metaboxes/required-form-settings.php:29
800
  msgid "Add a new field"
801
+ msgstr "Pridať nové pole"
802
 
803
  #: ../includes/views/metaboxes/required-form-settings.php:32
804
  msgid "Select MailChimp field.."
805
+ msgstr "Zvoľte pole MailChimpu.."
806
 
807
  #: ../includes/views/metaboxes/required-form-settings.php:36
808
  msgid "Submit Button"
809
+ msgstr "Tlačidlo na odosielanie"
810
 
811
  #: ../includes/views/metaboxes/required-form-settings.php:37
812
  msgid "Lists Choice"
813
+ msgstr "Výberový zoznam"
814
 
815
  #: ../includes/views/metaboxes/required-form-settings.php:45
816
  msgid "Label"
817
+ msgstr "Štítok"
818
 
819
  #: ../includes/views/metaboxes/required-form-settings.php:45
820
  #: ../includes/views/metaboxes/required-form-settings.php:50
821
  #: ../includes/views/metaboxes/required-form-settings.php:55
822
  msgid "(optional)"
823
+ msgstr "(voliteľné)"
824
 
825
  #: ../includes/views/metaboxes/required-form-settings.php:50
826
  msgid "Placeholder"
827
+ msgstr "Zástupný text"
828
 
829
  #: ../includes/views/metaboxes/required-form-settings.php:55
830
  msgid "Initial value"
831
+ msgstr "Počiatočná hodnota"
832
 
833
  #: ../includes/views/metaboxes/required-form-settings.php:60
834
  msgid "Labels"
835
+ msgstr "Štítky"
836
 
837
  #: ../includes/views/metaboxes/required-form-settings.php:60
838
  msgid "(leave empty to hide)"
839
+ msgstr "(ponechajte prázdne)"
840
 
841
  #: ../includes/views/metaboxes/required-form-settings.php:65
842
  #, php-format
843
  msgid "Wrap in paragraph %s tags?"
844
+ msgstr "Vložiť do značiek odseku %s ?"
845
 
846
  #: ../includes/views/metaboxes/required-form-settings.php:69
847
  msgid "Required field?"
848
+ msgstr "Povinné pole?"
849
 
850
  #: ../includes/views/metaboxes/required-form-settings.php:73
851
  msgid "Add to form"
852
+ msgstr "Pridať do formulára"
853
 
854
  #: ../includes/views/metaboxes/required-form-settings.php:77
855
  msgid "Generated HTML"
856
+ msgstr "Vygenerované HTML"
857
 
858
  #: ../includes/views/metaboxes/required-form-settings.php:86
859
  msgid "Form usage"
860
+ msgstr "Použitie formulára"
861
 
862
  #: ../includes/views/metaboxes/required-form-settings.php:87
863
  #, php-format
864
  msgid ""
865
  "Use the shortcode %s to display this form inside a post, page or text widget."
866
  msgstr ""
867
+ "Použite shortcode %s pre zobrazenie tohto formulára v rámci článku, stránky, "
868
+ "alebo textového widgetu."
869
 
870
  #: ../includes/views/pages/admin-checkbox-settings.php:11
871
  #: ../includes/views/pages/admin-form-settings.php:10
872
  #: ../includes/views/pages/admin-general-settings.php:10
873
  #: ../includes/views/pages/admin-reports.php:10
874
  msgid "MailChimp for WordPress"
875
+ msgstr "MailChimp pre WordPress"
876
 
877
  #: ../includes/views/pages/admin-checkbox-settings.php:11
878
  msgid "Checkbox Settings"
879
+ msgstr "Nastavenia zaškrtávacích políčok"
880
 
881
  #: ../includes/views/pages/admin-checkbox-settings.php:14
882
  msgid ""
883
  "To use sign-up checkboxes, select at least one list and one form to add the "
884
  "checkbox to."
885
  msgstr ""
886
+ "Na používanie registračných zaškrtávacích políčok vyberte aspoň jeden zoznam "
887
+ "a jeden formulár, do ktorého ho chcete pridať."
888
 
889
  #: ../includes/views/pages/admin-checkbox-settings.php:21
890
  msgid "MailChimp settings for checkboxes"
891
+ msgstr "Nastavenia MailChimpu pre zaškrtávacie políčka"
892
 
893
  #: ../includes/views/pages/admin-checkbox-settings.php:26
894
  msgid ""
895
  "If you want to use sign-up checkboxes, select at least one MailChimp list to "
896
  "subscribe people to."
897
  msgstr ""
898
+ "Ak si želáte používať registračné zaškrtávacie políčka, vyberte aspoň jeden "
899
+ "MailChimp zoznam, na ktorý chcete ľudí prihlásiť."
900
 
901
  #: ../includes/views/pages/admin-checkbox-settings.php:34
902
  msgid "MailChimp Lists"
903
+ msgstr "MailChimp zoznamy"
904
 
905
  #: ../includes/views/pages/admin-checkbox-settings.php:45
906
  msgid ""
907
  "Select the list(s) to which people who check the checkbox should be "
908
  "subscribed."
909
  msgstr ""
910
+ "Zvoľte zoznam(y), ktorý by mali odoberať ľudia, ktorí si zaškrtnú políčko."
911
 
912
  #: ../includes/views/pages/admin-checkbox-settings.php:68
913
  msgid "Checkbox settings"
914
+ msgstr "Nastavenia zaškrtávacích políčok"
915
 
916
  #: ../includes/views/pages/admin-checkbox-settings.php:71
917
  msgid "Add the checkbox to these forms"
918
+ msgstr "Pridať zaškrtávacie políčko do týchto formulárov"
919
 
920
  #: ../includes/views/pages/admin-checkbox-settings.php:78
921
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
922
  msgstr ""
923
+ "Vybratím formulára sa doň automaticky pridá aj registračné zaškrtávacie "
924
+ "políčko."
925
 
926
  #: ../includes/views/pages/admin-checkbox-settings.php:85
927
  #, php-format
929
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
930
  "forms.</p>"
931
  msgstr ""
932
+ "Používajte %s vo Vašom Contact Form 7 kóde na pridanie registračného "
933
+ "zaškrtávacieho políčka do Vašich CF7 formulárov.</p>"
934
 
935
  #: ../includes/views/pages/admin-checkbox-settings.php:90
936
  msgid "Checkbox label text"
937
+ msgstr "Text zaškrtávacieho políčka"
938
 
939
  #: ../includes/views/pages/admin-checkbox-settings.php:93
940
  #: ../includes/views/pages/admin-checkbox-settings.php:123
941
  #, php-format
942
  msgid "HTML tags like %s are allowed in the label text."
943
+ msgstr "HTML značky ako %s sú povolené v texte štítku."
944
 
945
  #: ../includes/views/pages/admin-checkbox-settings.php:97
946
  msgid "Pre-check the checkbox?"
947
+ msgstr "Predznačiť zaškrtávacie políčko?"
948
 
949
  #: ../includes/views/pages/admin-checkbox-settings.php:102
950
  msgid "Load some default CSS?"
951
+ msgstr "Načítať predvolené CSS?"
952
 
953
  #: ../includes/views/pages/admin-checkbox-settings.php:104
954
  msgid "Select \"yes\" if the checkbox appears in a weird place."
955
+ msgstr "Zvoľte \"áno\", ak sa zaškrtávacie políčko objaví na podivnom mieste."
956
 
957
  #: ../includes/views/pages/admin-checkbox-settings.php:108
958
  #: ../includes/views/pages/admin-checkbox-settings.php:128
959
  #: ../includes/views/tabs/admin-forms-general-settings.php:48
960
  #: ../includes/views/tabs/admin-forms-general-settings.php:152
961
  msgid "Save all changes"
962
+ msgstr "Uložiť všetky zmeny"
963
 
964
  #: ../includes/views/pages/admin-checkbox-settings.php:111
965
  msgid "Custom label texts"
966
+ msgstr "Vlastné texty štítkov"
967
 
968
  #: ../includes/views/pages/admin-checkbox-settings.php:112
969
  msgid ""
970
  "Override the default checkbox label text for any given checkbox using the "
971
  "fields below."
972
  msgstr ""
973
+ "Nahradiť predvolený text štítku pri každom zaškrtávacom políčku pomocou "
974
+ "nižšie uvedených polí."
975
 
976
  #: ../includes/views/pages/admin-form-settings.php:13
977
  msgid "Forms & Settings"
978
+ msgstr "Formuláre a nastavenia"
979
 
980
  #: ../includes/views/pages/admin-form-settings.php:14
981
  msgid "CSS Styles Builder"
982
+ msgstr "Staviteľ CSS štýlov"
983
 
984
  #: ../includes/views/pages/admin-general-settings.php:10
985
  msgid "License & API Settings"
986
+ msgstr "Licencia a nastavenia API"
987
 
988
  #: ../includes/views/pages/admin-general-settings.php:19
989
  msgid "API Settings"
990
+ msgstr "Nastavenia API"
991
 
992
  #: ../includes/views/pages/admin-general-settings.php:21
993
  msgid "CONNECTED"
994
+ msgstr "PRIPOJENÉ"
995
 
996
  #: ../includes/views/pages/admin-general-settings.php:23
997
  msgid "NOT CONNECTED"
998
+ msgstr "NEPRIPOJENÉ"
999
 
1000
  #: ../includes/views/pages/admin-general-settings.php:29
1001
  msgid "API Key"
1002
+ msgstr "API kľúč"
1003
 
1004
  #: ../includes/views/pages/admin-general-settings.php:31
1005
  msgid "Your MailChimp API key"
1006
+ msgstr "Váš MailChimp API kľúč"
1007
 
1008
  #: ../includes/views/pages/admin-general-settings.php:32
1009
  msgid "Get your API key here."
1010
+ msgstr "Zaobstarajte si Váš API kľúč tu."
1011
 
1012
  #: ../includes/views/pages/admin-general-settings.php:48
1013
  msgid "MailChimp Data"
1014
+ msgstr "MailChimp údaje"
1015
 
1016
  #: ../includes/views/pages/admin-general-settings.php:49
1017
  msgid ""
1019
  "your MailChimp lists, please use the following button to renew your cached "
1020
  "data."
1021
  msgstr ""
1022
+ "Nižšie uvedená tabuľka zobrazuje dáta zoznamov MailChimpu. Ak ste vykonali "
1023
+ "zmeny vo Vašich MailChimp zoznamoch, použite prosím nasledujúce tlačidlo na "
1024
+ "obnovenie dát uložených vo vyrovnávacej pamäti."
1025
 
1026
  #: ../includes/views/pages/admin-general-settings.php:55
1027
  #: ../includes/views/pages/admin-general-settings.php:126
1028
  msgid "Renew MailChimp lists"
1029
+ msgstr "Obnoviť MailChimp zoznamy"
1030
 
1031
  #: ../includes/views/pages/admin-general-settings.php:113
1032
  msgid "No lists were found in your MailChimp account."
1033
+ msgstr "Nenašli sa žiadne zoznamy vo Vašom účte MailChimp."
1034
 
1035
  #: ../includes/views/pages/admin-reports.php:14
1036
  msgid "Statistics"
1037
+ msgstr "Štatistiky"
1038
 
1039
  #: ../includes/views/pages/admin-reports.php:15
1040
  msgid "Log"
1041
+ msgstr "Záznam"
1042
 
1043
  #: ../includes/views/parts/admin-footer.php:9
1044
  #, php-format
1046
  "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1047
  "email me directly at <a href=\"%s\">support@dannyvankooten.com</a>."
1048
  msgstr ""
1049
+ "Potrebujete pomoc? Prečítajte si <a href=\"%s\">dokumentáciu rozšírenia</a>, "
1050
+ "alebo mi napíšte e-mail na <a href=\"%s\">support@dannyvankooten.com</a>."
1051
 
1052
  #: ../includes/views/parts/admin-text-variables.php:13
1053
  msgid "Replaced with the form response (error or success messages)."
1054
+ msgstr "Nahradí sa odozvou formulára (správa o úspešnosti požiadavky)."
1055
 
1056
  #: ../includes/views/parts/admin-text-variables.php:18
1057
  msgid "Replaced with a captcha field."
1058
+ msgstr "Nahradí sa poľom captcha."
1059
 
1060
  #: ../includes/views/parts/admin-text-variables.php:23
1061
  msgid "Replaced with the number of subscribers on the selected list(s)"
1062
+ msgstr "Nahradí sa počtom odberateľov na zvolenom zozname"
1063
 
1064
  #: ../includes/views/parts/admin-text-variables.php:27
1065
  #, php-format
1066
  msgid "Replaced with the current site language, eg: %s"
1067
+ msgstr "Nahradí sa aktuálnym jazykom stránky, napr.: %s"
1068
 
1069
  #: ../includes/views/parts/admin-text-variables.php:31
1070
  msgid "Replaced with the visitor's IP address"
1071
+ msgstr "Nahradí sa IP adresou návštevníka"
1072
 
1073
  #: ../includes/views/parts/admin-text-variables.php:35
1074
  #, php-format
1075
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
1076
+ msgstr "Nahradí sa aktuálnym dátumom (yyyy/mm/dd napr.: %s)"
1077
 
1078
  #: ../includes/views/parts/admin-text-variables.php:39
1079
  #, php-format
1080
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
1081
+ msgstr "Nahradí sa aktuálnym časom (hh:mm:ss napr.: %s)"
1082
 
1083
  #: ../includes/views/parts/admin-text-variables.php:43
1084
  msgid ""
1085
  "Replaced with the logged in user's email (or nothing, if there is no logged "
1086
  "in user)"
1087
  msgstr ""
1088
+ "Nahradí sa e-mailom prihláseného používateľa (alebo ničím, ak sa žiadny "
1089
+ "používateľ neprihlásil)"
1090
 
1091
  #: ../includes/views/parts/admin-text-variables.php:47
1092
  msgid "First name of the current user"
1093
+ msgstr "Meno aktuálneho používateľa"
1094
 
1095
  #: ../includes/views/parts/admin-text-variables.php:51
1096
  msgid "Last name of the current user"
1097
+ msgstr "Priezvisko aktuálneho používateľa"
1098
 
1099
  #: ../includes/views/parts/admin-text-variables.php:55
1100
  msgid "Current user ID"
1101
+ msgstr "ID aktuálneho používateľa"
1102
 
1103
  #: ../includes/views/parts/admin-text-variables.php:59
1104
  msgid "Current URL"
1105
+ msgstr "Aktuálna URL"
1106
 
1107
  #: ../includes/views/tabs/admin-forms-css-builder.php:10
1108
  msgid "Use the fields below to create custom styling rules for your forms."
1109
  msgstr ""
1110
+ "Nižšie uvedené polia použite na vytvorenie vlastných štýlov pre Vaše "
1111
+ "formuláre."
1112
 
1113
  #: ../includes/views/tabs/admin-forms-css-builder.php:214
1114
  msgid "Build CSS File"
1115
+ msgstr "Vybudovať súbor CSS"
1116
 
1117
  #: ../includes/views/tabs/admin-forms-css-builder.php:230
1118
  #, php-format
1119
  msgid "Please <a href=\"%s\">create at least 1 form</a> first."
1120
+ msgstr "Prosím, <a href=\"%s\">vytvorte aspoň jeden formulár</a>."
1121
 
1122
  #: ../includes/views/tabs/admin-forms-css-builder.php:232
1123
  msgid "Select form for preview"
1124
+ msgstr "Zvoľte formulár k nahliadnutiu"
1125
 
1126
  #: ../includes/views/tabs/admin-forms-general-settings.php:8
1127
  msgid "Sign-Up Forms"
1128
+ msgstr "Formuláre registrácie"
1129
 
1130
  #: ../includes/views/tabs/admin-forms-general-settings.php:8
1131
  msgid "Create New Form"
1132
+ msgstr "Vytvoriť nový formulár"
1133
 
1134
  #: ../includes/views/tabs/admin-forms-general-settings.php:16
1135
  msgid "General form settings"
1136
+ msgstr "Všeobecné nastavenia formulára"
1137
 
1138
  #: ../includes/views/tabs/admin-forms-general-settings.php:19
1139
  msgid "Load form styles (CSS)?"
1140
+ msgstr "Načítať štýly formulára (CSS)?"
1141
 
1142
  #: ../includes/views/tabs/admin-forms-general-settings.php:23
1143
  msgid "Yes, load basic form styles"
1144
+ msgstr "Áno, načítať základné štýly formulára"
1145
 
1146
  #: ../includes/views/tabs/admin-forms-general-settings.php:24
1147
  msgid "Yes, load my custom form styles"
1148
+ msgstr "Áno, načítať moje vlastné štýly formulára"
1149
 
1150
  #: ../includes/views/tabs/admin-forms-general-settings.php:25
1151
  msgid "Yes, load default form theme"
1152
+ msgstr "Áno, načítať predvolenú tému formulára"
1153
 
1154
  #: ../includes/views/tabs/admin-forms-general-settings.php:26
1155
  msgid "Light Theme"
1156
+ msgstr "Svetlá téma"
1157
 
1158
  #: ../includes/views/tabs/admin-forms-general-settings.php:27
1159
  msgid "Red Theme"
1160
+ msgstr "Červená téma"
1161
 
1162
  #: ../includes/views/tabs/admin-forms-general-settings.php:28
1163
  msgid "Green Theme"
1164
+ msgstr "Zelená téma"
1165
 
1166
  #: ../includes/views/tabs/admin-forms-general-settings.php:29
1167
  msgid "Blue Theme"
1168
+ msgstr "Modrá téma"
1169
 
1170
  #: ../includes/views/tabs/admin-forms-general-settings.php:30
1171
  msgid "Dark Theme"
1172
+ msgstr "Tmavá téma"
1173
 
1174
  #: ../includes/views/tabs/admin-forms-general-settings.php:31
1175
  msgid "Custom Color Theme"
1176
+ msgstr "Vlastná farba témy"
1177
 
1178
  #: ../includes/views/tabs/admin-forms-general-settings.php:36
1179
  #, php-format
1182
  "\"custom form styles\". Otherwise, choose the basic formatting styles or one "
1183
  "of the default themes."
1184
  msgstr ""
1185
+ "Ak ste si %svytvorili vlastné štýly%s a chcete ich načítať, vyberte "
1186
+ "\"vlastné štýly formulára\". V opačnom prípade zvoľte základné štýly "
1187
+ "formátovania alebo niektorý z predvolených tém."
1188
 
1189
  #: ../includes/views/tabs/admin-forms-general-settings.php:40
1190
  msgid "Select Color"
1191
+ msgstr "Vyberte farbu"
1192
 
1193
  #: ../includes/views/tabs/admin-forms-general-settings.php:50
1194
  msgid "Default MailChimp settings"
1195
+ msgstr "Predvolené nastavenia MailChimpu"
1196
 
1197
  #: ../includes/views/tabs/admin-forms-general-settings.php:51
1198
  #: ../includes/views/tabs/admin-forms-general-settings.php:99
1200
  "The following settings apply to <strong>all</strong> forms but can be "
1201
  "overridden on a per-form basis."
1202
  msgstr ""
1203
+ "Nasledujúce nastavenia sa vzťahujú na <strong>všetky</strong> formuláre, ale "
1204
+ "pri jednotlivých formulároch môžu byť nahradené."
1205
 
1206
  #: ../includes/views/tabs/admin-forms-general-settings.php:98
1207
  msgid "Default form settings"
1208
+ msgstr "Predvolené nastavenia formulára"
1209
+
languages/mailchimp-for-wp.mo DELETED
Binary file
languages/mailchimp-for-wp.pot ADDED
@@ -0,0 +1,1166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 Danny van Kooten
2
+ # This file is distributed under the GPL v3.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: MailChimp for WordPress Pro 2.4.2\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
7
+ "POT-Creation-Date: 2014-09-12 12:35:52+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=utf-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: Danny van Kooten <support@mc4wp.com>\n"
13
+ "Language-Team: MC4WP Team <support@mc4wp.com>\n"
14
+ "X-Generator: grunt-wp-i18n 0.4.4\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-Language: English\n"
18
+ "X-Poedit-Country: UNITED STATES\n"
19
+ "X-Poedit-SourceCharset: utf-8\n"
20
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2; "
21
+ "_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__; esc_html__;esc_attr_e; "
22
+ "esc_html_e;esc_attr_x:1,2c; esc_html_x:1,2c;\n"
23
+ "X-Poedit-Bookmarks: \n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+ "X-Textdomain-Support: yes\n"
26
+
27
+ #: includes/admin/class-admin.php:215
28
+ msgid "Settings"
29
+ msgstr ""
30
+
31
+ #: includes/admin/class-admin.php:234
32
+ msgid "Documentation"
33
+ msgstr ""
34
+
35
+ #: includes/admin/class-admin.php:277
36
+ msgid "Save Form"
37
+ msgstr ""
38
+
39
+ #: includes/admin/class-admin.php:281
40
+ msgid "Update Form"
41
+ msgstr ""
42
+
43
+ #: includes/admin/class-admin.php:314
44
+ msgid "Your email address"
45
+ msgstr ""
46
+
47
+ #: includes/admin/class-admin.php:315
48
+ msgid "Email address"
49
+ msgstr ""
50
+
51
+ #: includes/admin/class-admin.php:316
52
+ msgid "Sign up"
53
+ msgstr ""
54
+
55
+ #: includes/admin/class-admin.php:332
56
+ msgid "Back to general form settings"
57
+ msgstr ""
58
+
59
+ #: includes/admin/class-admin.php:334
60
+ msgid "Form updated."
61
+ msgstr ""
62
+
63
+ #: includes/admin/class-admin.php:335
64
+ msgid "Form saved."
65
+ msgstr ""
66
+
67
+ #: includes/admin/class-admin.php:343
68
+ msgid "An EMAIL field. Example: <code>%s</code>"
69
+ msgstr ""
70
+
71
+ #: includes/admin/class-admin.php:349
72
+ msgid "A submit button. Example: <code>%s</code>"
73
+ msgstr ""
74
+
75
+ #: includes/admin/class-admin.php:349
76
+ msgid "Sign Up"
77
+ msgstr ""
78
+
79
+ #: includes/admin/class-admin.php:377
80
+ msgid "A '%s' field"
81
+ msgstr ""
82
+
83
+ #: includes/admin/class-admin.php:389
84
+ msgid "Your form is missing the following (required) form fields:"
85
+ msgstr ""
86
+
87
+ #: includes/admin/class-admin.php:461
88
+ #: includes/views/metaboxes/optional-form-settings.php:69
89
+ msgid "Form Settings"
90
+ msgstr ""
91
+
92
+ #: includes/admin/class-admin.php:462
93
+ msgid "Optional Settings"
94
+ msgstr ""
95
+
96
+ #: includes/admin/class-admin.php:463
97
+ msgid "Form Variables"
98
+ msgstr ""
99
+
100
+ #: includes/admin/class-admin.php:503
101
+ msgid "Use the following variables to add some dynamic content to your form."
102
+ msgstr ""
103
+
104
+ #: includes/admin/class-admin.php:601
105
+ msgid "MailChimp & License"
106
+ msgstr ""
107
+
108
+ #: includes/admin/class-admin.php:602
109
+ msgid "Checkboxes"
110
+ msgstr ""
111
+
112
+ #: includes/admin/class-admin.php:603
113
+ #: includes/views/pages/admin-form-settings.php:10
114
+ msgid "Forms"
115
+ msgstr ""
116
+
117
+ #: includes/admin/class-admin.php:604 includes/views/pages/admin-reports.php:10
118
+ msgid "Reports"
119
+ msgstr ""
120
+
121
+ #: includes/admin/class-admin.php:701
122
+ msgid "Comment form"
123
+ msgstr ""
124
+
125
+ #: includes/admin/class-admin.php:702
126
+ msgid "Registration form"
127
+ msgstr ""
128
+
129
+ #: includes/admin/class-admin.php:706
130
+ msgid "MultiSite forms"
131
+ msgstr ""
132
+
133
+ #: includes/admin/class-admin.php:710 includes/tables/class-log-table.php:212
134
+ msgid "BuddyPress registration"
135
+ msgstr ""
136
+
137
+ #: includes/admin/class-admin.php:718 includes/admin/class-admin.php:722
138
+ msgid "%s checkout"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-admin.php:758
142
+ msgid ""
143
+ "Please make sure the plugin is connected to MailChimp. <a "
144
+ "href=\"%s\">Provide a valid API key.</a>"
145
+ msgstr ""
146
+
147
+ #: includes/admin/class-admin.php:768
148
+ msgid "Renewed MailChimp cache."
149
+ msgstr ""
150
+
151
+ #: includes/admin/class-admin.php:770
152
+ msgid "Failed to renew MailChimp cache - please try again later."
153
+ msgstr ""
154
+
155
+ #: includes/admin/class-admin.php:860
156
+ msgid "End date can't be before the start date"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-admin.php:892
160
+ msgid ""
161
+ "You disabled logging using the %s filter. Re-enable it to use the Reports "
162
+ "page."
163
+ msgstr ""
164
+
165
+ #: includes/admin/class-admin.php:908
166
+ msgid ""
167
+ "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
168
+ "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
169
+ "it now</a> to prevent problems"
170
+ msgstr ""
171
+
172
+ #: includes/admin/class-styles-builder.php:319
173
+ msgid ""
174
+ "Couldn't create the stylesheet. Manually add the generated CSS to your "
175
+ "theme stylesheet by using the %sTheme Editor%s or use FTP and edit "
176
+ "<em>%s</em>."
177
+ msgstr ""
178
+
179
+ #: includes/admin/class-styles-builder.php:320
180
+ msgid "%sShow generated CSS%s"
181
+ msgstr ""
182
+
183
+ #: includes/admin/class-styles-builder.php:330
184
+ msgid ""
185
+ "To apply these styles on your website, select \"load custom form styles\" "
186
+ "in the %sform settings%s"
187
+ msgstr ""
188
+
189
+ #: includes/admin/class-styles-builder.php:331
190
+ msgid "The %sCSS Stylesheet%s has been created."
191
+ msgstr ""
192
+
193
+ #: includes/class-form-manager.php:239
194
+ msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
195
+ msgstr ""
196
+
197
+ #: includes/class-form-manager.php:253
198
+ msgid ""
199
+ "<strong>Error:</strong> Sign-up form not found. Please check if you used "
200
+ "the correct form ID."
201
+ msgstr ""
202
+
203
+ #: includes/class-form-request.php:453
204
+ msgid "New Sign-Up"
205
+ msgstr ""
206
+
207
+ #: includes/class-form-request.php:454
208
+ msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
209
+ msgstr ""
210
+
211
+ #: includes/class-form-request.php:495
212
+ msgid ""
213
+ "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
214
+ "be added to the selected MailChimp lists until they confirm their email "
215
+ "address."
216
+ msgstr ""
217
+
218
+ #: includes/class-form-request.php:498
219
+ msgid "This email was auto-sent by the MailChimp for WordPress plugin."
220
+ msgstr ""
221
+
222
+ #: includes/class-widget.php:20
223
+ msgid "MailChimp for WP Form"
224
+ msgstr ""
225
+
226
+ #: includes/class-widget.php:21
227
+ msgid "Displays one of your MailChimp for WordPress sign-up forms"
228
+ msgstr ""
229
+
230
+ #: includes/class-widget.php:39
231
+ msgid ""
232
+ "Please select the sign-up form you'd like to show here in the <a "
233
+ "href=\"%s\">widget settings</a>."
234
+ msgstr ""
235
+
236
+ #: includes/class-widget.php:68
237
+ msgid "Newsletter"
238
+ msgstr ""
239
+
240
+ #: includes/class-widget.php:79
241
+ msgid "Title:"
242
+ msgstr ""
243
+
244
+ #: includes/class-widget.php:83
245
+ msgid "Form:"
246
+ msgstr ""
247
+
248
+ #: includes/class-widget.php:85
249
+ msgid "Select the form to show"
250
+ msgstr ""
251
+
252
+ #: includes/class-widget.php:93
253
+ msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
254
+ msgstr ""
255
+
256
+ #: includes/functions/general.php:20
257
+ msgid "Sign me up for the newsletter!"
258
+ msgstr ""
259
+
260
+ #: includes/functions/general.php:43
261
+ msgid ""
262
+ "Thank you, your sign-up request was successful! Please check your email "
263
+ "inbox to confirm."
264
+ msgstr ""
265
+
266
+ #: includes/functions/general.php:44
267
+ msgid "Oops. Something went wrong. Please try again later."
268
+ msgstr ""
269
+
270
+ #: includes/functions/general.php:45
271
+ msgid "Please provide a valid email address."
272
+ msgstr ""
273
+
274
+ #: includes/functions/general.php:46
275
+ msgid "Given email address is already subscribed, thank you!"
276
+ msgstr ""
277
+
278
+ #: includes/functions/general.php:47
279
+ msgid "Please complete the CAPTCHA."
280
+ msgstr ""
281
+
282
+ #: includes/functions/general.php:48
283
+ msgid "Please fill in the required fields."
284
+ msgstr ""
285
+
286
+ #: includes/integrations/class-cf7.php:44
287
+ #: includes/views/metaboxes/optional-form-settings.php:16
288
+ #: includes/views/metaboxes/optional-form-settings.php:30
289
+ #: includes/views/metaboxes/optional-form-settings.php:44
290
+ #: includes/views/metaboxes/optional-form-settings.php:58
291
+ #: includes/views/metaboxes/optional-form-settings.php:75
292
+ #: includes/views/metaboxes/optional-form-settings.php:87
293
+ #: includes/views/metaboxes/optional-form-settings.php:106
294
+ #: includes/views/pages/admin-checkbox-settings.php:52
295
+ #: includes/views/pages/admin-checkbox-settings.php:60
296
+ #: includes/views/pages/admin-checkbox-settings.php:99
297
+ #: includes/views/pages/admin-checkbox-settings.php:104
298
+ #: includes/views/tabs/admin-forms-general-settings.php:58
299
+ #: includes/views/tabs/admin-forms-general-settings.php:69
300
+ #: includes/views/tabs/admin-forms-general-settings.php:79
301
+ #: includes/views/tabs/admin-forms-general-settings.php:90
302
+ #: includes/views/tabs/admin-forms-general-settings.php:104
303
+ #: includes/views/tabs/admin-forms-general-settings.php:109
304
+ msgid "Yes"
305
+ msgstr ""
306
+
307
+ #: includes/integrations/class-cf7.php:44
308
+ #: includes/views/metaboxes/optional-form-settings.php:18
309
+ #: includes/views/metaboxes/optional-form-settings.php:32
310
+ #: includes/views/metaboxes/optional-form-settings.php:46
311
+ #: includes/views/metaboxes/optional-form-settings.php:60
312
+ #: includes/views/metaboxes/optional-form-settings.php:77
313
+ #: includes/views/metaboxes/optional-form-settings.php:89
314
+ #: includes/views/metaboxes/optional-form-settings.php:107
315
+ #: includes/views/pages/admin-checkbox-settings.php:52
316
+ #: includes/views/pages/admin-checkbox-settings.php:62
317
+ #: includes/views/pages/admin-checkbox-settings.php:99
318
+ #: includes/views/pages/admin-checkbox-settings.php:104
319
+ #: includes/views/tabs/admin-forms-general-settings.php:22
320
+ #: includes/views/tabs/admin-forms-general-settings.php:60
321
+ #: includes/views/tabs/admin-forms-general-settings.php:71
322
+ #: includes/views/tabs/admin-forms-general-settings.php:81
323
+ #: includes/views/tabs/admin-forms-general-settings.php:92
324
+ #: includes/views/tabs/admin-forms-general-settings.php:104
325
+ #: includes/views/tabs/admin-forms-general-settings.php:109
326
+ msgid "No"
327
+ msgstr ""
328
+
329
+ #: includes/library/license-manager/class-license-manager.php:152
330
+ msgid "I know. Don't bug me."
331
+ msgstr ""
332
+
333
+ #: includes/library/license-manager/class-license-manager.php:171
334
+ msgid ""
335
+ "<b>Warning!</b> You're blocking external requests which means you won't be "
336
+ "able to get %s updates. Please add %s to %s."
337
+ msgstr ""
338
+
339
+ #: includes/library/license-manager/class-license-manager.php:213
340
+ msgid "Your %s license has been activated. You have an unlimited license. "
341
+ msgstr ""
342
+
343
+ #: includes/library/license-manager/class-license-manager.php:215
344
+ msgid "Your %s license has been activated. You have used %d/%d activations. "
345
+ msgstr ""
346
+
347
+ #: includes/library/license-manager/class-license-manager.php:220
348
+ msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
349
+ msgstr ""
350
+
351
+ #: includes/library/license-manager/class-license-manager.php:224
352
+ msgid ""
353
+ "<a href=\"%s\">Your license is expiring in %d days, would you like to "
354
+ "extend it?</a>"
355
+ msgstr ""
356
+
357
+ #: includes/library/license-manager/class-license-manager.php:233
358
+ msgid ""
359
+ "You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
360
+ "<a href=\"%s\">upgrade your license</a> to use it on this site."
361
+ msgstr ""
362
+
363
+ #: includes/library/license-manager/class-license-manager.php:236
364
+ msgid ""
365
+ "Your license has expired. You must <a href=\"%s\">extend your license</a> "
366
+ "in order to use it again."
367
+ msgstr ""
368
+
369
+ #: includes/library/license-manager/class-license-manager.php:239
370
+ msgid "Failed to activate your license, your license key seems to be invalid."
371
+ msgstr ""
372
+
373
+ #: includes/library/license-manager/class-license-manager.php:264
374
+ msgid "Your %s license has been deactivated."
375
+ msgstr ""
376
+
377
+ #: includes/library/license-manager/class-license-manager.php:266
378
+ msgid "Failed to deactivate your %s license."
379
+ msgstr ""
380
+
381
+ #: includes/library/license-manager/class-license-manager.php:304
382
+ msgid "Request error: \"%s\""
383
+ msgstr ""
384
+
385
+ #: includes/library/license-manager/class-license-manager.php:463
386
+ msgid "%s: License Settings"
387
+ msgstr ""
388
+
389
+ #: includes/library/license-manager/class-plugin-license-manager.php:67
390
+ msgid ""
391
+ "%s is network activated, please contact your site administrator to manage "
392
+ "the license."
393
+ msgstr ""
394
+
395
+ #: includes/library/license-manager/class-update-manager.php:69
396
+ msgid "%s failed to check for updates because of the following error: <em>%s</em>"
397
+ msgstr ""
398
+
399
+ #: includes/library/license-manager/class-update-manager.php:131
400
+ msgid ""
401
+ "This site has not been activated properly on dannyvankooten.com and thus "
402
+ "cannot check for future updates. Please activate your site with a valid "
403
+ "license key."
404
+ msgstr ""
405
+
406
+ #: includes/library/license-manager/views/form.php:23
407
+ msgid "License status"
408
+ msgstr ""
409
+
410
+ #: includes/library/license-manager/views/form.php:33
411
+ msgid "Toggle license status"
412
+ msgstr ""
413
+
414
+ #: includes/library/license-manager/views/form.php:37
415
+ msgid "Deactivate License"
416
+ msgstr ""
417
+
418
+ #: includes/library/license-manager/views/form.php:38
419
+ msgid "(deactivate your license so you can activate it on another WordPress site)"
420
+ msgstr ""
421
+
422
+ #: includes/library/license-manager/views/form.php:42
423
+ msgid "Activate License"
424
+ msgstr ""
425
+
426
+ #: includes/library/license-manager/views/form.php:44
427
+ msgid "Please enter a license key in the field below first."
428
+ msgstr ""
429
+
430
+ #: includes/library/license-manager/views/form.php:52
431
+ msgid "License Key"
432
+ msgstr ""
433
+
434
+ #: includes/library/license-manager/views/form.php:54
435
+ msgid "Paste your license key here, as found in the email receipt."
436
+ msgstr ""
437
+
438
+ #: includes/library/license-manager/views/form.php:56
439
+ msgid "You defined your license key using the %s PHP constant."
440
+ msgstr ""
441
+
442
+ #: includes/library/license-manager/views/form.php:73
443
+ msgid "Your %s license will expire on %s."
444
+ msgstr ""
445
+
446
+ #: includes/library/license-manager/views/form.php:76
447
+ msgid "%sRenew your license now%s."
448
+ msgstr ""
449
+
450
+ #: includes/tables/class-forms-table.php:35
451
+ msgid "ID"
452
+ msgstr ""
453
+
454
+ #: includes/tables/class-forms-table.php:36
455
+ #: includes/tables/class-log-table.php:207
456
+ #: includes/tables/class-log-table.php:312
457
+ msgid "Form"
458
+ msgstr ""
459
+
460
+ #: includes/tables/class-forms-table.php:37
461
+ msgid "Shortcode"
462
+ msgstr ""
463
+
464
+ #: includes/tables/class-forms-table.php:38
465
+ msgid "List(s)"
466
+ msgstr ""
467
+
468
+ #: includes/tables/class-forms-table.php:39
469
+ msgid "Last edited"
470
+ msgstr ""
471
+
472
+ #: includes/tables/class-forms-table.php:76
473
+ #: includes/tables/class-forms-table.php:80
474
+ msgid "Edit Form"
475
+ msgstr ""
476
+
477
+ #: includes/tables/class-forms-table.php:77
478
+ msgid "Delete"
479
+ msgstr ""
480
+
481
+ #: includes/tables/class-forms-table.php:98
482
+ msgid "No MailChimp list(s) selected yet."
483
+ msgstr ""
484
+
485
+ #: includes/tables/class-forms-table.php:105
486
+ msgid "You have not created any sign-up forms yet. Time to do so!"
487
+ msgstr ""
488
+
489
+ #: includes/tables/class-log-table.php:33
490
+ msgid "Subscriber"
491
+ msgstr ""
492
+
493
+ #: includes/tables/class-log-table.php:34
494
+ msgid "Subscribers"
495
+ msgstr ""
496
+
497
+ #: includes/tables/class-log-table.php:53
498
+ msgid "Email"
499
+ msgstr ""
500
+
501
+ #: includes/tables/class-log-table.php:54
502
+ msgid "List"
503
+ msgstr ""
504
+
505
+ #: includes/tables/class-log-table.php:55
506
+ msgid "Type"
507
+ msgstr ""
508
+
509
+ #: includes/tables/class-log-table.php:56
510
+ msgid "Source"
511
+ msgstr ""
512
+
513
+ #: includes/tables/class-log-table.php:57
514
+ msgid "Extra data"
515
+ msgstr ""
516
+
517
+ #: includes/tables/class-log-table.php:58
518
+ msgid "Subscribed"
519
+ msgstr ""
520
+
521
+ #: includes/tables/class-log-table.php:192
522
+ #: includes/tables/class-log-table.php:196
523
+ msgid "Comment"
524
+ msgstr ""
525
+
526
+ #: includes/tables/class-log-table.php:192
527
+ msgid "deleted"
528
+ msgstr ""
529
+
530
+ #: includes/tables/class-log-table.php:200
531
+ msgid "Registration"
532
+ msgstr ""
533
+
534
+ #: includes/tables/class-log-table.php:216
535
+ msgid "MultiSite registration"
536
+ msgstr ""
537
+
538
+ #: includes/tables/class-log-table.php:220
539
+ #: includes/tables/class-log-table.php:224
540
+ msgid "Checkout"
541
+ msgstr ""
542
+
543
+ #: includes/tables/class-log-table.php:229
544
+ msgid "Contact Form 7"
545
+ msgstr ""
546
+
547
+ #: includes/tables/class-log-table.php:233
548
+ msgid "bbPress: New Topic"
549
+ msgstr ""
550
+
551
+ #: includes/tables/class-log-table.php:237
552
+ msgid "bbPress: New Reply"
553
+ msgstr ""
554
+
555
+ #: includes/tables/class-log-table.php:243
556
+ msgid "Other Form"
557
+ msgstr ""
558
+
559
+ #: includes/tables/class-log-table.php:283
560
+ msgid "No subscribe requests found."
561
+ msgstr ""
562
+
563
+ #: includes/tables/class-log-table.php:306
564
+ msgid "All"
565
+ msgstr ""
566
+
567
+ #: includes/tables/class-log-table.php:318
568
+ msgid "Checkbox"
569
+ msgstr ""
570
+
571
+ #: includes/views/metaboxes/optional-form-settings.php:8
572
+ msgid ""
573
+ "Any settings you specify here will override the <a href=\"%s\">general form "
574
+ "settings</a>. If no setting is specified, the corresponding general setting "
575
+ "value will be used."
576
+ msgstr ""
577
+
578
+ #: includes/views/metaboxes/optional-form-settings.php:10
579
+ msgid "MailChimp Settings"
580
+ msgstr ""
581
+
582
+ #: includes/views/metaboxes/optional-form-settings.php:13
583
+ #: includes/views/pages/admin-checkbox-settings.php:51
584
+ #: includes/views/tabs/admin-forms-general-settings.php:55
585
+ msgid "Double opt-in?"
586
+ msgstr ""
587
+
588
+ #: includes/views/metaboxes/optional-form-settings.php:20
589
+ #: includes/views/metaboxes/optional-form-settings.php:34
590
+ #: includes/views/metaboxes/optional-form-settings.php:48
591
+ #: includes/views/metaboxes/optional-form-settings.php:62
592
+ #: includes/views/metaboxes/optional-form-settings.php:79
593
+ #: includes/views/metaboxes/optional-form-settings.php:91
594
+ msgid "Inherit"
595
+ msgstr ""
596
+
597
+ #: includes/views/metaboxes/optional-form-settings.php:22
598
+ #: includes/views/pages/admin-checkbox-settings.php:53
599
+ #: includes/views/tabs/admin-forms-general-settings.php:62
600
+ msgid ""
601
+ "Select \"yes\" if you want people to confirm their email address before "
602
+ "being subscribed (recommended)"
603
+ msgstr ""
604
+
605
+ #: includes/views/metaboxes/optional-form-settings.php:27
606
+ #: includes/views/tabs/admin-forms-general-settings.php:76
607
+ msgid "Update existing subscribers?"
608
+ msgstr ""
609
+
610
+ #: includes/views/metaboxes/optional-form-settings.php:36
611
+ #: includes/views/tabs/admin-forms-general-settings.php:83
612
+ msgid ""
613
+ "Select \"yes\" if you want to update existing subscribers (instead of "
614
+ "showing the \"already subscribed\" message)."
615
+ msgstr ""
616
+
617
+ #: includes/views/metaboxes/optional-form-settings.php:41
618
+ #: includes/views/tabs/admin-forms-general-settings.php:87
619
+ msgid "Replace interest groups?"
620
+ msgstr ""
621
+
622
+ #: includes/views/metaboxes/optional-form-settings.php:50
623
+ #: includes/views/tabs/admin-forms-general-settings.php:94
624
+ msgid ""
625
+ "Select \"yes\" if you want to replace the interest groups with the groups "
626
+ "provided instead of adding the provided groups to the member's interest "
627
+ "groups (only when updating a subscriber)."
628
+ msgstr ""
629
+
630
+ #: includes/views/metaboxes/optional-form-settings.php:55
631
+ #: includes/views/pages/admin-checkbox-settings.php:57
632
+ #: includes/views/tabs/admin-forms-general-settings.php:66
633
+ msgid "Send Welcome Email?"
634
+ msgstr ""
635
+
636
+ #: includes/views/metaboxes/optional-form-settings.php:64
637
+ #: includes/views/pages/admin-checkbox-settings.php:64
638
+ #: includes/views/tabs/admin-forms-general-settings.php:73
639
+ msgid ""
640
+ "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
641
+ "succeeds (only when double opt-in is disabled)."
642
+ msgstr ""
643
+
644
+ #: includes/views/metaboxes/optional-form-settings.php:72
645
+ #: includes/views/tabs/admin-forms-general-settings.php:103
646
+ msgid "Enable AJAX form submission?"
647
+ msgstr ""
648
+
649
+ #: includes/views/metaboxes/optional-form-settings.php:80
650
+ #: includes/views/tabs/admin-forms-general-settings.php:105
651
+ msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
652
+ msgstr ""
653
+
654
+ #: includes/views/metaboxes/optional-form-settings.php:84
655
+ #: includes/views/tabs/admin-forms-general-settings.php:108
656
+ msgid "Hide form after a successful sign-up?"
657
+ msgstr ""
658
+
659
+ #: includes/views/metaboxes/optional-form-settings.php:93
660
+ #: includes/views/tabs/admin-forms-general-settings.php:110
661
+ msgid "Select \"yes\" to hide the form fields after a successful sign-up."
662
+ msgstr ""
663
+
664
+ #: includes/views/metaboxes/optional-form-settings.php:97
665
+ #: includes/views/tabs/admin-forms-general-settings.php:113
666
+ msgid "Redirect to URL after successful sign-ups"
667
+ msgstr ""
668
+
669
+ #: includes/views/metaboxes/optional-form-settings.php:100
670
+ #: includes/views/tabs/admin-forms-general-settings.php:116
671
+ msgid ""
672
+ "Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
673
+ "including <code>http://</code>"
674
+ msgstr ""
675
+
676
+ #: includes/views/metaboxes/optional-form-settings.php:104
677
+ msgid "Send an email copy of the form data?"
678
+ msgstr ""
679
+
680
+ #: includes/views/metaboxes/optional-form-settings.php:108
681
+ msgid ""
682
+ "Tick \"yes\" if you want to receive an email with the form data for every "
683
+ "sign-up request."
684
+ msgstr ""
685
+
686
+ #: includes/views/metaboxes/optional-form-settings.php:111
687
+ msgid "Send the copy to this email:"
688
+ msgstr ""
689
+
690
+ #: includes/views/metaboxes/optional-form-settings.php:117
691
+ msgid "Messages"
692
+ msgstr ""
693
+
694
+ #: includes/views/metaboxes/optional-form-settings.php:120
695
+ #: includes/views/tabs/admin-forms-general-settings.php:123
696
+ msgid "Success"
697
+ msgstr ""
698
+
699
+ #: includes/views/metaboxes/optional-form-settings.php:124
700
+ #: includes/views/tabs/admin-forms-general-settings.php:128
701
+ msgid "Invalid email address"
702
+ msgstr ""
703
+
704
+ #: includes/views/metaboxes/optional-form-settings.php:128
705
+ #: includes/views/tabs/admin-forms-general-settings.php:132
706
+ msgid "Required field missing"
707
+ msgstr ""
708
+
709
+ #: includes/views/metaboxes/optional-form-settings.php:132
710
+ #: includes/views/tabs/admin-forms-general-settings.php:136
711
+ msgid "Already subscribed"
712
+ msgstr ""
713
+
714
+ #: includes/views/metaboxes/optional-form-settings.php:137
715
+ #: includes/views/tabs/admin-forms-general-settings.php:142
716
+ msgid "Invalid CAPTCHA"
717
+ msgstr ""
718
+
719
+ #: includes/views/metaboxes/optional-form-settings.php:142
720
+ #: includes/views/tabs/admin-forms-general-settings.php:147
721
+ msgid "Other errors"
722
+ msgstr ""
723
+
724
+ #: includes/views/metaboxes/optional-form-settings.php:148
725
+ #: includes/views/tabs/admin-forms-general-settings.php:152
726
+ msgid "HTML tags like %s are allowed in the message fields."
727
+ msgstr ""
728
+
729
+ #: includes/views/metaboxes/required-form-settings.php:14
730
+ msgid "Lists this form subscribes to"
731
+ msgstr ""
732
+
733
+ #: includes/views/metaboxes/required-form-settings.php:17
734
+ #: includes/views/pages/admin-checkbox-settings.php:38
735
+ msgid "No lists found, %sare you connected to MailChimp?%s"
736
+ msgstr ""
737
+
738
+ #: includes/views/metaboxes/required-form-settings.php:29
739
+ msgid "Add a new field"
740
+ msgstr ""
741
+
742
+ #: includes/views/metaboxes/required-form-settings.php:32
743
+ msgid "Select MailChimp field.."
744
+ msgstr ""
745
+
746
+ #: includes/views/metaboxes/required-form-settings.php:36
747
+ msgid "Submit Button"
748
+ msgstr ""
749
+
750
+ #: includes/views/metaboxes/required-form-settings.php:37
751
+ msgid "Lists Choice"
752
+ msgstr ""
753
+
754
+ #: includes/views/metaboxes/required-form-settings.php:45
755
+ msgid "Label"
756
+ msgstr ""
757
+
758
+ #: includes/views/metaboxes/required-form-settings.php:45
759
+ #: includes/views/metaboxes/required-form-settings.php:50
760
+ #: includes/views/metaboxes/required-form-settings.php:55
761
+ msgid "(optional)"
762
+ msgstr ""
763
+
764
+ #: includes/views/metaboxes/required-form-settings.php:50
765
+ msgid "Placeholder"
766
+ msgstr ""
767
+
768
+ #: includes/views/metaboxes/required-form-settings.php:55
769
+ msgid "Initial value"
770
+ msgstr ""
771
+
772
+ #: includes/views/metaboxes/required-form-settings.php:60
773
+ msgid "Labels"
774
+ msgstr ""
775
+
776
+ #: includes/views/metaboxes/required-form-settings.php:60
777
+ msgid "(leave empty to hide)"
778
+ msgstr ""
779
+
780
+ #: includes/views/metaboxes/required-form-settings.php:65
781
+ msgid "Wrap in paragraph %s tags?"
782
+ msgstr ""
783
+
784
+ #: includes/views/metaboxes/required-form-settings.php:69
785
+ msgid "Required field?"
786
+ msgstr ""
787
+
788
+ #: includes/views/metaboxes/required-form-settings.php:73
789
+ msgid "Add to form"
790
+ msgstr ""
791
+
792
+ #: includes/views/metaboxes/required-form-settings.php:77
793
+ msgid "Generated HTML"
794
+ msgstr ""
795
+
796
+ #: includes/views/metaboxes/required-form-settings.php:86
797
+ msgid "Form usage"
798
+ msgstr ""
799
+
800
+ #: includes/views/metaboxes/required-form-settings.php:87
801
+ msgid ""
802
+ "Use the shortcode %s to display this form inside a post, page or text "
803
+ "widget."
804
+ msgstr ""
805
+
806
+ #: includes/views/pages/admin-checkbox-settings.php:11
807
+ #: includes/views/pages/admin-form-settings.php:10
808
+ #: includes/views/pages/admin-general-settings.php:10
809
+ #: includes/views/pages/admin-reports.php:10
810
+ msgid "MailChimp for WordPress"
811
+ msgstr ""
812
+
813
+ #: includes/views/pages/admin-checkbox-settings.php:11
814
+ msgid "Checkbox Settings"
815
+ msgstr ""
816
+
817
+ #: includes/views/pages/admin-checkbox-settings.php:14
818
+ msgid ""
819
+ "To use sign-up checkboxes, select at least one list and one form to add the "
820
+ "checkbox to."
821
+ msgstr ""
822
+
823
+ #: includes/views/pages/admin-checkbox-settings.php:21
824
+ msgid "MailChimp settings for checkboxes"
825
+ msgstr ""
826
+
827
+ #: includes/views/pages/admin-checkbox-settings.php:26
828
+ msgid ""
829
+ "If you want to use sign-up checkboxes, select at least one MailChimp list "
830
+ "to subscribe people to."
831
+ msgstr ""
832
+
833
+ #: includes/views/pages/admin-checkbox-settings.php:34
834
+ msgid "MailChimp Lists"
835
+ msgstr ""
836
+
837
+ #: includes/views/pages/admin-checkbox-settings.php:45
838
+ msgid ""
839
+ "Select the list(s) to which people who check the checkbox should be "
840
+ "subscribed."
841
+ msgstr ""
842
+
843
+ #: includes/views/pages/admin-checkbox-settings.php:68
844
+ msgid "Checkbox settings"
845
+ msgstr ""
846
+
847
+ #: includes/views/pages/admin-checkbox-settings.php:71
848
+ msgid "Add the checkbox to these forms"
849
+ msgstr ""
850
+
851
+ #: includes/views/pages/admin-checkbox-settings.php:78
852
+ msgid "Selecting a form will automatically add the sign-up checkbox to it."
853
+ msgstr ""
854
+
855
+ #: includes/views/pages/admin-checkbox-settings.php:86
856
+ msgid ""
857
+ "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
858
+ "forms.</p>"
859
+ msgstr ""
860
+
861
+ #: includes/views/pages/admin-checkbox-settings.php:91
862
+ msgid "Checkbox label text"
863
+ msgstr ""
864
+
865
+ #: includes/views/pages/admin-checkbox-settings.php:94
866
+ #: includes/views/pages/admin-checkbox-settings.php:134
867
+ msgid "HTML tags like %s are allowed in the label text."
868
+ msgstr ""
869
+
870
+ #: includes/views/pages/admin-checkbox-settings.php:98
871
+ msgid "Pre-check the checkbox?"
872
+ msgstr ""
873
+
874
+ #: includes/views/pages/admin-checkbox-settings.php:103
875
+ msgid "Load some default CSS?"
876
+ msgstr ""
877
+
878
+ #: includes/views/pages/admin-checkbox-settings.php:105
879
+ msgid "Select \"yes\" if the checkbox appears in a weird place."
880
+ msgstr ""
881
+
882
+ #: includes/views/pages/admin-checkbox-settings.php:108
883
+ msgid "WooCommerce checkbox position"
884
+ msgstr ""
885
+
886
+ #: includes/views/pages/admin-checkbox-settings.php:111
887
+ msgid "After the billing details"
888
+ msgstr ""
889
+
890
+ #: includes/views/pages/admin-checkbox-settings.php:112
891
+ msgid "After the additional information"
892
+ msgstr ""
893
+
894
+ #: includes/views/pages/admin-checkbox-settings.php:115
895
+ msgid "Choose the position for the checkbox in your WooCommerce checkout form."
896
+ msgstr ""
897
+
898
+ #: includes/views/pages/admin-checkbox-settings.php:122
899
+ msgid "Custom label texts"
900
+ msgstr ""
901
+
902
+ #: includes/views/pages/admin-checkbox-settings.php:123
903
+ msgid ""
904
+ "Override the default checkbox label text for any given checkbox using the "
905
+ "fields below."
906
+ msgstr ""
907
+
908
+ #: includes/views/pages/admin-form-settings.php:13
909
+ msgid "Forms & Settings"
910
+ msgstr ""
911
+
912
+ #: includes/views/pages/admin-form-settings.php:14
913
+ msgid "CSS Styles Builder"
914
+ msgstr ""
915
+
916
+ #: includes/views/pages/admin-general-settings.php:10
917
+ msgid "License & API Settings"
918
+ msgstr ""
919
+
920
+ #: includes/views/pages/admin-general-settings.php:19
921
+ msgid "API Settings"
922
+ msgstr ""
923
+
924
+ #: includes/views/pages/admin-general-settings.php:21
925
+ msgid "CONNECTED"
926
+ msgstr ""
927
+
928
+ #: includes/views/pages/admin-general-settings.php:23
929
+ msgid "NOT CONNECTED"
930
+ msgstr ""
931
+
932
+ #: includes/views/pages/admin-general-settings.php:29
933
+ msgid "API Key"
934
+ msgstr ""
935
+
936
+ #: includes/views/pages/admin-general-settings.php:31
937
+ msgid "Your MailChimp API key"
938
+ msgstr ""
939
+
940
+ #: includes/views/pages/admin-general-settings.php:32
941
+ msgid "Get your API key here."
942
+ msgstr ""
943
+
944
+ #: includes/views/pages/admin-general-settings.php:48
945
+ msgid "MailChimp Data"
946
+ msgstr ""
947
+
948
+ #: includes/views/pages/admin-general-settings.php:49
949
+ msgid ""
950
+ "The table below shows your MailChimp lists data. If you applied changes to "
951
+ "your MailChimp lists, please use the following button to renew your cached "
952
+ "data."
953
+ msgstr ""
954
+
955
+ #: includes/views/pages/admin-general-settings.php:55
956
+ #: includes/views/pages/admin-general-settings.php:126
957
+ msgid "Renew MailChimp lists"
958
+ msgstr ""
959
+
960
+ #: includes/views/pages/admin-general-settings.php:113
961
+ msgid "No lists were found in your MailChimp account."
962
+ msgstr ""
963
+
964
+ #: includes/views/pages/admin-reports.php:14
965
+ msgid "Statistics"
966
+ msgstr ""
967
+
968
+ #: includes/views/pages/admin-reports.php:15
969
+ msgid "Log"
970
+ msgstr ""
971
+
972
+ #: includes/views/parts/admin-footer.php:9
973
+ msgid ""
974
+ "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
975
+ "email me directly at <a href=\"%s\">support@mc4wp.com</a>."
976
+ msgstr ""
977
+
978
+ #: includes/views/parts/admin-text-variables.php:13
979
+ msgid "Replaced with the form response (error or success messages)."
980
+ msgstr ""
981
+
982
+ #: includes/views/parts/admin-text-variables.php:18
983
+ msgid "Replaced with a captcha field."
984
+ msgstr ""
985
+
986
+ #: includes/views/parts/admin-text-variables.php:23
987
+ msgid "Replaced with the number of subscribers on the selected list(s)"
988
+ msgstr ""
989
+
990
+ #: includes/views/parts/admin-text-variables.php:27
991
+ msgid "Replaced with the current site language, eg: %s"
992
+ msgstr ""
993
+
994
+ #: includes/views/parts/admin-text-variables.php:31
995
+ msgid "Replaced with the visitor's IP address"
996
+ msgstr ""
997
+
998
+ #: includes/views/parts/admin-text-variables.php:35
999
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
1000
+ msgstr ""
1001
+
1002
+ #: includes/views/parts/admin-text-variables.php:39
1003
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
1004
+ msgstr ""
1005
+
1006
+ #: includes/views/parts/admin-text-variables.php:43
1007
+ msgid ""
1008
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
1009
+ "in user)"
1010
+ msgstr ""
1011
+
1012
+ #: includes/views/parts/admin-text-variables.php:47
1013
+ msgid "First name of the current user"
1014
+ msgstr ""
1015
+
1016
+ #: includes/views/parts/admin-text-variables.php:51
1017
+ msgid "Last name of the current user"
1018
+ msgstr ""
1019
+
1020
+ #: includes/views/parts/admin-text-variables.php:55
1021
+ msgid "Current user ID"
1022
+ msgstr ""
1023
+
1024
+ #: includes/views/parts/admin-text-variables.php:59
1025
+ msgid "Current URL"
1026
+ msgstr ""
1027
+
1028
+ #: includes/views/tabs/admin-forms-css-builder.php:10
1029
+ msgid "Use the fields below to create custom styling rules for your forms."
1030
+ msgstr ""
1031
+
1032
+ #: includes/views/tabs/admin-forms-css-builder.php:15
1033
+ msgid "Select form to build styles for:"
1034
+ msgstr ""
1035
+
1036
+ #: includes/views/tabs/admin-forms-css-builder.php:26
1037
+ msgid "Create at least one form first."
1038
+ msgstr ""
1039
+
1040
+ #: includes/views/tabs/admin-forms-css-builder.php:41
1041
+ msgid "You need to have JavaScript enabled to see a preview of your form."
1042
+ msgstr ""
1043
+
1044
+ #: includes/views/tabs/admin-forms-css-builder.php:223
1045
+ msgid "Are you sure you want to delete all custom styles for this form?"
1046
+ msgstr ""
1047
+
1048
+ #: includes/views/tabs/admin-forms-css-builder.php:223
1049
+ msgid "Delete Form Styles"
1050
+ msgstr ""
1051
+
1052
+ #: includes/views/tabs/admin-forms-css-builder.php:224
1053
+ msgid "Use to delete all styles for this form"
1054
+ msgstr ""
1055
+
1056
+ #: includes/views/tabs/admin-forms-css-builder.php:231
1057
+ msgid "Build CSS File"
1058
+ msgstr ""
1059
+
1060
+ #: includes/views/tabs/admin-forms-general-settings.php:8
1061
+ msgid "Sign-Up Forms"
1062
+ msgstr ""
1063
+
1064
+ #: includes/views/tabs/admin-forms-general-settings.php:8
1065
+ msgid "Create New Form"
1066
+ msgstr ""
1067
+
1068
+ #: includes/views/tabs/admin-forms-general-settings.php:16
1069
+ msgid "General form settings"
1070
+ msgstr ""
1071
+
1072
+ #: includes/views/tabs/admin-forms-general-settings.php:19
1073
+ msgid "Load form styles (CSS)?"
1074
+ msgstr ""
1075
+
1076
+ #: includes/views/tabs/admin-forms-general-settings.php:23
1077
+ msgid "Yes, load basic form styles"
1078
+ msgstr ""
1079
+
1080
+ #: includes/views/tabs/admin-forms-general-settings.php:24
1081
+ msgid "Yes, load my custom form styles"
1082
+ msgstr ""
1083
+
1084
+ #: includes/views/tabs/admin-forms-general-settings.php:25
1085
+ msgid "Yes, load default form theme"
1086
+ msgstr ""
1087
+
1088
+ #: includes/views/tabs/admin-forms-general-settings.php:26
1089
+ msgid "Light Theme"
1090
+ msgstr ""
1091
+
1092
+ #: includes/views/tabs/admin-forms-general-settings.php:27
1093
+ msgid "Red Theme"
1094
+ msgstr ""
1095
+
1096
+ #: includes/views/tabs/admin-forms-general-settings.php:28
1097
+ msgid "Green Theme"
1098
+ msgstr ""
1099
+
1100
+ #: includes/views/tabs/admin-forms-general-settings.php:29
1101
+ msgid "Blue Theme"
1102
+ msgstr ""
1103
+
1104
+ #: includes/views/tabs/admin-forms-general-settings.php:30
1105
+ msgid "Dark Theme"
1106
+ msgstr ""
1107
+
1108
+ #: includes/views/tabs/admin-forms-general-settings.php:31
1109
+ msgid "Custom Color Theme"
1110
+ msgstr ""
1111
+
1112
+ #: includes/views/tabs/admin-forms-general-settings.php:36
1113
+ msgid ""
1114
+ "If you %screated a custom stylesheet%s and want it to be loaded, select "
1115
+ "\"custom form styles\". Otherwise, choose the basic formatting styles or "
1116
+ "one of the default themes."
1117
+ msgstr ""
1118
+
1119
+ #: includes/views/tabs/admin-forms-general-settings.php:40
1120
+ msgid "Select Color"
1121
+ msgstr ""
1122
+
1123
+ #: includes/views/tabs/admin-forms-general-settings.php:48
1124
+ msgid "Save all changes"
1125
+ msgstr ""
1126
+
1127
+ #: includes/views/tabs/admin-forms-general-settings.php:50
1128
+ msgid "Default MailChimp settings"
1129
+ msgstr ""
1130
+
1131
+ #: includes/views/tabs/admin-forms-general-settings.php:51
1132
+ #: includes/views/tabs/admin-forms-general-settings.php:99
1133
+ msgid ""
1134
+ "The following settings apply to <strong>all</strong> forms but can be "
1135
+ "overridden on a per-form basis."
1136
+ msgstr ""
1137
+
1138
+ #: includes/views/tabs/admin-forms-general-settings.php:98
1139
+ msgid "Default Form Settings"
1140
+ msgstr ""
1141
+
1142
+ #: includes/views/tabs/admin-forms-general-settings.php:120
1143
+ msgid "Default Messages"
1144
+ msgstr ""
1145
+
1146
+ #. Plugin Name of the plugin/theme
1147
+ msgid "MailChimp for WordPress Pro"
1148
+ msgstr ""
1149
+
1150
+ #. Plugin URI of the plugin/theme
1151
+ msgid "https://mc4wp.com/"
1152
+ msgstr ""
1153
+
1154
+ #. Description of the plugin/theme
1155
+ msgid ""
1156
+ "Pro version of MailChimp for WordPress. Adds various sign-up methods to "
1157
+ "your website."
1158
+ msgstr ""
1159
+
1160
+ #. Author of the plugin/theme
1161
+ msgid "Danny van Kooten"
1162
+ msgstr ""
1163
+
1164
+ #. Author URI of the plugin/theme
1165
+ msgid "http://dannyvankooten.com"
1166
+ msgstr ""
mailchimp-for-wp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: MailChimp for WordPress Lite
4
  Plugin URI: https://mc4wp.com/
5
  Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
6
- Version: 2.1.2
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.1.2' );
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: https://mc4wp.com/
5
  Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
6
+ Version: 2.1.3
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.1.3' );
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
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/
4
  Tags: mailchimp,newsletter,optin,mailinglist,sign-up form,subscribe,form,shortcode,widget,checkbox,comment,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7,events manager,comment form,registration form,captcha
5
  Requires at least: 3.6
6
  Tested up to: 4.0
7
- Stable tag: 2.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -31,7 +31,7 @@ Add sign-up checkboxes to *any* form on your website. The plugin offers built-in
31
  - Beautiful. Choose one of the default form themes or use your own styles.
32
  - Developer friendly.
33
 
34
- [Installation](http://wordpress.org/plugins/mailchimp-for-wp/installation/) | [Frequently Asked Questions](http://wordpress.org/plugins/mailchimp-for-wp/faq/) | [Screenshots](http://wordpress.org/plugins/mailchimp-for-wp/screenshots/)
35
 
36
  > #### MailChimp for WordPress Pro
37
  > This plugin has a premium version which comes with the following features.<br />
@@ -43,27 +43,27 @@ Add sign-up checkboxes to *any* form on your website. The plugin offers built-in
43
  > WooCommerce and Easy Digital Downloads checkout integration.<br />
44
  > Priority Support<br />
45
  >
46
- > [More information](https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link) | [Demo](https://mc4wp.com/demo/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link)
47
 
48
  **Translations**
49
 
50
  The MailChimp for WordPress plugin is fully translated into the following languages.
51
 
52
- - English (en_US) - [Danny van Kooten](http://dannyvankooten.com)
53
- - Dutch (nl_NL) - [Danny van Kooten](http://dannyvankooten.com)
54
- - Spanish (es_ES) - [Paul Benitez - Tecnofilos](http://www.tecnofilos.net/)
55
- - Brazilian (pt_BR) - [Felipe Scuissiatto - Evonline](http://www.evonline.com.br/)
56
  - German (de_DE) - [Jochen Gererstorfer](http://slotnerd.de/)
57
- - Italian (it_IT) - [Gianpaolo Rolando](http://www.gianpaolorolando.eu/)
58
- - Slovak (sk_SK) - [Henrich Koszegi - Webworks](http://webworks.sk/)
59
 
60
- If you want to help [translating the MailChimp for WordPress plugin](http://docs.mc4wp.com/article/41-translating-mailchimp-for-wordpress), head over to [translate.mc4wp.com](http://translate.mc4wp.com) .
61
 
62
  **More information**
63
 
64
- - [MailChimp for WordPress Pro](https://mc4wp.com/), containing additional features.
65
- - 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)
66
- - [@DannyvanKooten](http://twitter.com/dannyvankooten) on Twitter
67
  - Developers; follow or contribute to the [MailChimp for WP plugin on GitHub](https://github.com/dannyvankooten/mailchimp-for-wordpress)
68
 
69
 
@@ -105,7 +105,7 @@ if( function_exists( 'mc4wp_form' ) ) {
105
  }
106
  `
107
 
108
- Need help? Please take a look at the [frequently asked questions](http://wordpress.org/plugins/mailchimp-for-wp/faq/) first. If you can't find your answer there, start a topic in the [MailChimp for WordPress plugin support forums](http://wordpress.org/support/plugin/mailchimp-for-wp).
109
 
110
  = Upgrade to Pro =
111
  If you like the plugin, [get the Pro version of MailChimp for WordPress](https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=installation-instructions-link) for an even better plugin!
@@ -121,7 +121,8 @@ If you like the plugin, [get the Pro version of MailChimp for WordPress](https:/
121
  > **AJAX Forms.** Submitting forms does not require a page reload.<br />
122
  > **Styles Builder..** Alter the design of your forms and have the styling rules generated for you.<br />
123
  > **Statistics & Logging.** Beautiful line charts and log tables, providing useful insights.<br /><br />
124
- > [Have a look](https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link) | [Demo](https://mc4wp.com/demo/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link)
 
125
 
126
  = How to display a form in posts or pages? =
127
  Use the `[mc4wp_form]` shortcode.
@@ -245,6 +246,19 @@ Your theme folder can be found by browsing to `/wp-content/themes/your-theme-nam
245
 
246
  == Changelog ==
247
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
 
249
  = 2.1.2 - August, 26, 2014 =
250
 
4
  Tags: mailchimp,newsletter,optin,mailinglist,sign-up form,subscribe,form,shortcode,widget,checkbox,comment,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7,events manager,comment form,registration form,captcha
5
  Requires at least: 3.6
6
  Tested up to: 4.0
7
+ Stable tag: 2.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
31
  - Beautiful. Choose one of the default form themes or use your own styles.
32
  - Developer friendly.
33
 
34
+ [Installation](https://wordpress.org/plugins/mailchimp-for-wp/installation/) | [Frequently Asked Questions](https://wordpress.org/plugins/mailchimp-for-wp/faq/) | [Screenshots](https://wordpress.org/plugins/mailchimp-for-wp/screenshots/)
35
 
36
  > #### MailChimp for WordPress Pro
37
  > This plugin has a premium version which comes with the following features.<br />
43
  > WooCommerce and Easy Digital Downloads checkout integration.<br />
44
  > Priority Support<br />
45
  >
46
+ > [More information](https://mc4wp.com/features/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link) | [Demo](https://mc4wp.com/demo/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=after-features-link)
47
 
48
  **Translations**
49
 
50
  The MailChimp for WordPress plugin is fully translated into the following languages.
51
 
52
+ - English (en_US) - [Danny van Kooten](https://dannyvankooten.com)
53
+ - Dutch (nl_NL) - [Danny van Kooten](https://dannyvankooten.com)
54
+ - Spanish (es_ES) - [Paul Benitez ](http://www.tecnofilos.net/) & [Enrique Pinto](http://www.thehivecluster.com/en)
55
+ - Brazilian (pt_BR) - [Felipe Scuissiatto](http://www.evonline.com.br/)
56
  - German (de_DE) - [Jochen Gererstorfer](http://slotnerd.de/)
57
+ - Italian (it_IT) - [Gianpaolo Rolando](http://www.gianpaolorolando.eu/) & [Tiziano D'Angelo](http://www.dangelos.it/)
58
+ - Slovak (sk_SK) - [Henrich Koszegi](http://www.webworks.sk/)
59
 
60
+ If you want to help [translating the MailChimp for WordPress plugin](http://docs.mc4wp.com/article/41-translating-mailchimp-for-wordpress), head over to [translate.mc4wp.com](http://translate.mc4wp.com).
61
 
62
  **More information**
63
 
64
+ - [MailChimp for WordPress Pro](https://mc4wp.com/), containing [additional features](https://mc4wp.com/features/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=more-info-link).
65
+ - Other [WordPress plugins](https://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)
66
+ - [@DannyvanKooten](https://twitter.com/dannyvankooten) on Twitter
67
  - Developers; follow or contribute to the [MailChimp for WP plugin on GitHub](https://github.com/dannyvankooten/mailchimp-for-wordpress)
68
 
69
 
105
  }
106
  `
107
 
108
+ Need help? Please take a look at the [frequently asked questions](https://wordpress.org/plugins/mailchimp-for-wp/faq/) first. If you can't find your answer there, start a topic in the [MailChimp for WordPress plugin support forums](http://wordpress.org/support/plugin/mailchimp-for-wp).
109
 
110
  = Upgrade to Pro =
111
  If you like the plugin, [get the Pro version of MailChimp for WordPress](https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=installation-instructions-link) for an even better plugin!
121
  > **AJAX Forms.** Submitting forms does not require a page reload.<br />
122
  > **Styles Builder..** Alter the design of your forms and have the styling rules generated for you.<br />
123
  > **Statistics & Logging.** Beautiful line charts and log tables, providing useful insights.<br /><br />
124
+ >
125
+ > [Differences Lite & Pro](https://mc4wp.com/features/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link) | [Demo](https://mc4wp.com/demo/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link) | [Upgrade Now](https://mc4wp.com/checkout/#utm_source=wp-plugin-repo&utm_medium=link&utm_campaign=faq-link)
126
 
127
  = How to display a form in posts or pages? =
128
  Use the `[mc4wp_form]` shortcode.
246
 
247
  == Changelog ==
248
 
249
+ = 2.1.3 - September 15, 2014 =
250
+
251
+ **Improvements**
252
+
253
+ - Updated Spanish and Dutch translations
254
+ - Fixed missing text domains
255
+ - Removed obsolete code in upgrade routine
256
+ - All settings are now properly sanitized before being stored.
257
+
258
+ **Additions**
259
+
260
+ - Added Slovak language files, thanks to [Henrich Koszegi - Webworks.sk](http://www.webworks.sk/).
261
+
262
 
263
  = 2.1.2 - August, 26, 2014 =
264