MailChimp for WordPress - Version 2.3.8

Version Description

  • August 18, 2015 =

Fixes

  • Prevented JS error when outputting forms with no submit button.
  • Using 0 as a Redirect URL resulted in a blank page.
  • Sign-up checkbox was showing twice in the Easy Digital Downloads checkout when showing registration fields, thanks Daniel Espinoza.
  • Default form was not automatically translated for languages other than English.

Improvements

  • Better way to hide the honeypot field, which stops bots from subscribing to your lists.
  • role="form" is no longer needed, thanks XhmikosR!
  • Filter mc4wp_form_animate_scroll now disables just the scroll animation, not the scroll itself.
  • Revamped UI for MailChimp lists overview
  • Updated German & Greek translations.

Additions

  • Added mc4wp_form_is_submitted() and mc4wp_form_get_response_html() functions.
Download this release

Release Info

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

Code changes from version 2.3.7 to 2.3.8

Files changed (56) hide show
  1. assets/css/admin.css +33 -3
  2. assets/css/admin.min.css +1 -1
  3. assets/js/form-request.js +2 -4
  4. assets/js/form-request.min.js +1 -1
  5. includes/class-form-manager.php +7 -52
  6. includes/class-form.php +2 -2
  7. includes/class-mailchimp.php +8 -2
  8. includes/class-request.php +2 -2
  9. includes/class-subscribe-request.php +7 -2
  10. includes/functions/general.php +36 -2
  11. includes/integrations/class-edd.php +1 -1
  12. includes/integrations/class-integration.php +1 -1
  13. includes/views/api-settings.php +75 -57
  14. includes/views/parts/admin-upgrade-to-pro.php +29 -2
  15. languages/mailchimp-for-wp-cs_CZ.mo +0 -0
  16. languages/mailchimp-for-wp-cs_CZ.po +1 -1
  17. languages/mailchimp-for-wp-de_CH.mo +0 -0
  18. languages/mailchimp-for-wp-de_CH.po +1 -1
  19. languages/mailchimp-for-wp-de_DE.mo +0 -0
  20. languages/mailchimp-for-wp-de_DE.po +882 -568
  21. languages/mailchimp-for-wp-el_GR.mo +0 -0
  22. languages/mailchimp-for-wp-el_GR.po +1298 -830
  23. languages/mailchimp-for-wp-es_ES.mo +0 -0
  24. languages/mailchimp-for-wp-es_ES.po +1 -1
  25. languages/mailchimp-for-wp-es_PR.mo +0 -0
  26. languages/mailchimp-for-wp-es_PR.po +1 -1
  27. languages/mailchimp-for-wp-fa_IR.mo +0 -0
  28. languages/mailchimp-for-wp-fa_IR.po +1 -1
  29. languages/mailchimp-for-wp-fi_FI.mo +0 -0
  30. languages/mailchimp-for-wp-fi_FI.po +1 -1
  31. languages/mailchimp-for-wp-fr_FR.mo +0 -0
  32. languages/mailchimp-for-wp-fr_FR.po +1 -1
  33. languages/mailchimp-for-wp-hu_HU.mo +0 -0
  34. languages/mailchimp-for-wp-hu_HU.po +1 -1
  35. languages/mailchimp-for-wp-id_ID.mo +0 -0
  36. languages/mailchimp-for-wp-id_ID.po +1 -1
  37. languages/mailchimp-for-wp-it_IT.mo +0 -0
  38. languages/mailchimp-for-wp-it_IT.po +1 -1
  39. languages/mailchimp-for-wp-nl_NL.mo +0 -0
  40. languages/mailchimp-for-wp-nl_NL.po +1 -1
  41. languages/mailchimp-for-wp-pt_BR.mo +0 -0
  42. languages/mailchimp-for-wp-pt_BR.po +37 -36
  43. languages/mailchimp-for-wp-pt_PT.mo +0 -0
  44. languages/mailchimp-for-wp-pt_PT.po +1 -1
  45. languages/mailchimp-for-wp-ru_RU.mo +0 -0
  46. languages/mailchimp-for-wp-ru_RU.po +29 -29
  47. languages/mailchimp-for-wp-sk_SK.mo +0 -0
  48. languages/mailchimp-for-wp-sk_SK.po +1 -1
  49. languages/mailchimp-for-wp-sv_SE.mo +0 -0
  50. languages/mailchimp-for-wp-sv_SE.po +1 -1
  51. languages/mailchimp-for-wp-tr_TR.mo +0 -0
  52. languages/mailchimp-for-wp-tr_TR.po +59 -58
  53. languages/mailchimp-for-wp-vi_VN.mo +0 -0
  54. languages/mailchimp-for-wp-vi_VN.po +1 -1
  55. mailchimp-for-wp.php +7 -6
  56. readme.txt +54 -190
assets/css/admin.css CHANGED
@@ -19,10 +19,14 @@
19
  vertical-align: top !important;
20
  }
21
 
22
- #mc4wp-admin .mc4wp-box{
23
  margin-bottom:20px;
24
  }
25
 
 
 
 
 
26
  #mc4wp-upgrade-box {
27
  background:#222;
28
  color:#ddd;
@@ -136,7 +140,7 @@
136
  border:1px solid #ccc;
137
  }
138
 
139
- .mc4wp-title{
140
  font-size: 1.4em;
141
  margin:1.6em 0 1em;
142
  padding:0 0 6px 0;
@@ -166,6 +170,32 @@ table.mc4wp-help tr:hover {
166
  float:right;
167
  }
168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  @media(max-width: 1279px) {
170
 
171
  #mc4wp-sidebar,
@@ -188,7 +218,7 @@ table.mc4wp-help tr:hover {
188
 
189
  }
190
 
191
- @media(max-width: 719px) {
192
 
193
  .mc4wp-hide-smallscreens{
194
  display: none;
19
  vertical-align: top !important;
20
  }
21
 
22
+ .mc4wp-box{
23
  margin-bottom:20px;
24
  }
25
 
26
+ .mc4wp-box label {
27
+ font-weight: bold;
28
+ }
29
+
30
  #mc4wp-upgrade-box {
31
  background:#222;
32
  color:#ddd;
140
  border:1px solid #ccc;
141
  }
142
 
143
+ .mc4wp-title{
144
  font-size: 1.4em;
145
  margin:1.6em 0 1em;
146
  padding:0 0 6px 0;
170
  float:right;
171
  }
172
 
173
+ .mc4wp-lists-overview {
174
+ border-collapse: collapse;
175
+ background: white;
176
+ padding: 20px;
177
+ max-height: 500px;
178
+ overflow-y: scroll;
179
+ }
180
+
181
+ .mc4wp-lists-overview table {
182
+ border: 0;
183
+ }
184
+
185
+ .mc4wp-lists-overview th {
186
+ font-weight: bold;
187
+ vertical-align: top;
188
+ }
189
+
190
+ .mc4wp-lists-overview th,
191
+ .mc4wp-lists-overview td {
192
+ border: 1px solid #efefef;
193
+ }
194
+
195
+ .mc4wp-lists-overview h3{
196
+ margin: 0 !important;
197
+ }
198
+
199
  @media(max-width: 1279px) {
200
 
201
  #mc4wp-sidebar,
218
 
219
  }
220
 
221
+ @media(max-width: 860px) {
222
 
223
  .mc4wp-hide-smallscreens{
224
  display: none;
assets/css/admin.min.css CHANGED
@@ -1 +1 @@
1
- #mc4wp-content{float:left;width:65%}#mc4wp-sidebar{float:left;width:33%;margin-left:2%;border-left:1px solid #ccc;padding:0 0 0 2%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.valigntop{vertical-align:top!important}#mc4wp-admin .mc4wp-box{margin-bottom:20px}#mc4wp-upgrade-box{background:#222;color:#ddd;padding:20px}#mc4wp-upgrade-box h3{margin:0;color:#fff}#mc4wp-fw h4{margin-top:0}#mc4wp-fw p{margin-bottom:1em}#mc4wp-fw-fields{display:none}#mc4wp-fw-preview{font-family:"Courier New",Courier,monospace;min-height:200px;font-size:11px;background:#fff;z-index:99}#mc4wp-lists{margin:0}#mc4wp-lists input{margin-right:5px}.mc4wp-settings tr.pro-feature td,.mc4wp-settings tr.pro-feature th,.pro-feature{color:#aaa}#mc4wp-admin .status{display:inline-block;margin-left:1em;padding:3px 6px;color:#fff;font-size:12px;font-weight:700}#mc4wp-admin .positive{background-color:#32cd32}#mc4wp-admin .negative{background-color:red}#mc4wp-admin .neutral{background:gray}#mc4wp-admin table th{text-align:left}#mc4wp-admin table.form-table tr td:first-child,#mc4wp-admin table.form-table tr th:first-child{padding-left:0}#mc4wp-admin td.nowrap{white-space:nowrap}#mc4wp-admin td.desc{font-style:italic;font-size:11px}.mc4wp-notice{padding:6px 8px;color:#31708f;background:#d9edf7;border:1px solid #bce8f1;margin:1em 0!important}#mc4wp-admin .mc4wp-col{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:50%;padding:0 5px}#mc4wp-admin .mc4wp-first{padding-left:0}#mc4wp-admin .mc4wp-last{padding-right:0}.mc4wp-well{background:#fff;padding:10px;border:1px solid #ccc}.mc4wp-title{font-size:1.4em;margin:1.6em 0 1em;padding:0 0 6px;border-bottom:1px solid #ddd}table.mc4wp-help,table.mc4wp-help td,table.mc4wp-help th{border:1px solid #ddd;border-collapse:collapse;font-size:12px}table.mc4wp-help td,table.mc4wp-help th{vertical-align:text-top;text-align:left;padding:5px 10px}table.mc4wp-help tr:hover{background-color:#ddd}#mc4wp-admin .wp-list-table code{float:right}@media(max-width:1279px){#mc4wp-content,#mc4wp-sidebar{float:none;width:100%;padding:0;margin:0}#mc4wp-sidebar{border-left:0;border-top:1px solid #ccc;margin-top:25px;padding-top:25px}#mc4wp-admin .wp-list-table code{float:none}}@media(max-width:719px){.mc4wp-hide-smallscreens{display:none}}
1
+ #mc4wp-content{float:left;width:65%}#mc4wp-sidebar{float:left;width:33%;margin-left:2%;border-left:1px solid #ccc;padding:0 0 0 2%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.valigntop{vertical-align:top!important}.mc4wp-box{margin-bottom:20px}.mc4wp-box label{font-weight:700}#mc4wp-upgrade-box{background:#222;color:#ddd;padding:20px}#mc4wp-upgrade-box h3{margin:0;color:#fff}#mc4wp-fw h4{margin-top:0}#mc4wp-fw p{margin-bottom:1em}#mc4wp-fw-fields{display:none}#mc4wp-fw-preview{font-family:"Courier New",Courier,monospace;min-height:200px;font-size:11px;background:#fff;z-index:99}#mc4wp-lists{margin:0}#mc4wp-lists input{margin-right:5px}.mc4wp-settings tr.pro-feature td,.mc4wp-settings tr.pro-feature th,.pro-feature{color:#aaa}#mc4wp-admin .status{display:inline-block;margin-left:1em;padding:3px 6px;color:#fff;font-size:12px;font-weight:700}#mc4wp-admin .positive{background-color:#32cd32}#mc4wp-admin .negative{background-color:red}#mc4wp-admin .neutral{background:gray}#mc4wp-admin table th{text-align:left}#mc4wp-admin table.form-table tr td:first-child,#mc4wp-admin table.form-table tr th:first-child{padding-left:0}#mc4wp-admin td.nowrap{white-space:nowrap}#mc4wp-admin td.desc{font-style:italic;font-size:11px}.mc4wp-notice{padding:6px 8px;color:#31708f;background:#d9edf7;border:1px solid #bce8f1;margin:1em 0!important}#mc4wp-admin .mc4wp-col{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:50%;padding:0 5px}#mc4wp-admin .mc4wp-first{padding-left:0}#mc4wp-admin .mc4wp-last{padding-right:0}.mc4wp-well{background:#fff;padding:10px;border:1px solid #ccc}.mc4wp-title{font-size:1.4em;margin:1.6em 0 1em;padding:0 0 6px;border-bottom:1px solid #ddd}table.mc4wp-help,table.mc4wp-help td,table.mc4wp-help th{border:1px solid #ddd;border-collapse:collapse;font-size:12px}table.mc4wp-help td,table.mc4wp-help th{vertical-align:text-top;text-align:left;padding:5px 10px}table.mc4wp-help tr:hover{background-color:#ddd}#mc4wp-admin .wp-list-table code{float:right}.mc4wp-lists-overview{border-collapse:collapse;background:#fff;padding:20px;max-height:500px;overflow-y:scroll}.mc4wp-lists-overview table{border:0}.mc4wp-lists-overview th{font-weight:700;vertical-align:top}.mc4wp-lists-overview td,.mc4wp-lists-overview th{border:1px solid #efefef}.mc4wp-lists-overview h3{margin:0!important}@media(max-width:1279px){#mc4wp-content,#mc4wp-sidebar{float:none;width:100%;padding:0;margin:0}#mc4wp-sidebar{border-left:0;border-top:1px solid #ccc;margin-top:25px;padding-top:25px}#mc4wp-admin .wp-list-table code{float:none}}@media(max-width:860px){.mc4wp-hide-smallscreens{display:none}}
assets/js/form-request.js CHANGED
@@ -29,9 +29,7 @@
29
  self.repopulate();
30
  }
31
 
32
- if( request.animate_scroll ) {
33
- self.scrollTo();
34
- }
35
  }
36
 
37
  /**
@@ -61,7 +59,7 @@
61
  }
62
 
63
  // scroll there. if jQuery is loaded, do it with an animation.
64
- if(window.jQuery !== undefined) {
65
  jQuery('html, body').animate({ scrollTop: scrollToHeight }, 800);
66
  } else {
67
  window.scrollTo(0, scrollToHeight);
29
  self.repopulate();
30
  }
31
 
32
+ self.scrollTo();
 
 
33
  }
34
 
35
  /**
59
  }
60
 
61
  // scroll there. if jQuery is loaded, do it with an animation.
62
+ if( request.animate_scroll && window.jQuery !== undefined) {
63
  jQuery('html, body').animate({ scrollTop: scrollToHeight }, 800);
64
  } else {
65
  window.scrollTo(0, scrollToHeight);
assets/js/form-request.min.js CHANGED
@@ -1 +1 @@
1
- !function(){function a(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent("on"+b,c)}function b(a,c,d){for(var e in c){var f=e,g=c[e];if(""!=g){if("undefined"!=typeof d&&(f=d+"["+e+"]"),g.constructor==Array)f+="[]";else if("object"==typeof g){b(a,g,f);continue}var h=a.querySelectorAll('input[name="'+f+'"], select[name="'+f+'"], textarea[name="'+f+'"]');if(!h)return;for(var i=0;i<h.length;i++){var j=h[i];switch(j.type||j.tagName){case"text":case"email":case"date":case"tel":case"number":j.value=g,j.className=j.className.replace("placeholdersjs","");break;case"radio":j.checked=j.value===g;break;case"checkbox":for(var k=0;k<g.length;k++){var l=j.value===g[k];if(l){j.checked=j.value===g[k];break}j.checked=!1}break;case"select-multiple":for(var m=g.constructor==Array?g:[g],n=0;n<j.options.length;n++)for(var o=0;o<m.length;o++)j.options[n].selected|=j.options[n].value==m[o];break;case"select":case"select-one":j.value=g.toString()||g;break;case"textarea":j.innerText=g}}}}}var c=function(c){function d(){return e.element=document.getElementById(c.formElementId),e.element?(1!=c.success&&e.repopulate(),void(c.animate_scroll&&e.scrollTo())):!1}var e=this;this.scrollTo=function(){var a=e.element,b=0,c=a,d=window.innerHeight;if(c.offsetParent){do b+=c.offsetTop;while(c=c.offsetParent)}else b=a.offsetTop;b-=d-80>a.clientHeight?(d-a.clientHeight)/2:80,void 0!==window.jQuery?jQuery("html, body").animate({scrollTop:b},800):window.scrollTo(0,b)},this.repopulate=function(){b(e.element,c.data)},a(window,"load",d)};window.mc4wpFormRequest=new c(mc4wpFormRequestData)}();
1
+ !function(){function a(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent("on"+b,c)}function b(a,c,d){for(var e in c){var f=e,g=c[e];if(""!=g){if("undefined"!=typeof d&&(f=d+"["+e+"]"),g.constructor==Array)f+="[]";else if("object"==typeof g){b(a,g,f);continue}var h=a.querySelectorAll('input[name="'+f+'"], select[name="'+f+'"], textarea[name="'+f+'"]');if(!h)return;for(var i=0;i<h.length;i++){var j=h[i];switch(j.type||j.tagName){case"text":case"email":case"date":case"tel":case"number":j.value=g,j.className=j.className.replace("placeholdersjs","");break;case"radio":j.checked=j.value===g;break;case"checkbox":for(var k=0;k<g.length;k++){var l=j.value===g[k];if(l){j.checked=j.value===g[k];break}j.checked=!1}break;case"select-multiple":for(var m=g.constructor==Array?g:[g],n=0;n<j.options.length;n++)for(var o=0;o<m.length;o++)j.options[n].selected|=j.options[n].value==m[o];break;case"select":case"select-one":j.value=g.toString()||g;break;case"textarea":j.innerText=g}}}}}var c=function(c){function d(){return e.element=document.getElementById(c.formElementId),e.element?(1!=c.success&&e.repopulate(),void e.scrollTo()):!1}var e=this;this.scrollTo=function(){var a=e.element,b=0,d=a,f=window.innerHeight;if(d.offsetParent){do b+=d.offsetTop;while(d=d.offsetParent)}else b=a.offsetTop;b-=f-80>a.clientHeight?(f-a.clientHeight)/2:80,c.animate_scroll&&void 0!==window.jQuery?jQuery("html, body").animate({scrollTop:b},800):window.scrollTo(0,b)},this.repopulate=function(){b(e.element,c.data)},a(window,"load",d)};window.mc4wpFormRequest=new c(mc4wpFormRequestData)}();
includes/class-form-manager.php CHANGED
@@ -49,7 +49,6 @@ class MC4WP_Lite_Form_Manager {
49
 
50
  public function add_hooks() {
51
  // load checkbox css if necessary
52
- add_action( 'wp_head', array( $this, 'print_css' ), 90 );
53
  add_action( 'wp_enqueue_scripts', array( $this, 'load_stylesheet' ) );
54
 
55
  // enable shortcodes in text widgets
@@ -158,39 +157,8 @@ class MC4WP_Lite_Form_Manager {
158
  // Print small JS snippet later on in the footer.
159
  add_action( 'wp_footer', array( $this, 'print_js' ), 99 );
160
 
161
- // Print CSS to hide honeypot (should be printed in `wp_head` by now)
162
- $html = '';
163
-
164
- // add inline css if it was not printed yet
165
- $html .= $this->print_css( false );
166
-
167
  // output form
168
- $html .= $form->output( $attributes['element_id'], $attributes, false );
169
-
170
- return $html;
171
- }
172
-
173
- /**
174
- * Prints some inline CSS that hides the honeypot field
175
- * @param bool $echo
176
- * @return string
177
- */
178
- public function print_css( $echo = true ) {
179
-
180
- if( $this->inline_css_printed ) {
181
- return '';
182
- }
183
-
184
- $html = '<style type="text/css">.mc4wp-form input[name="_mc4wp_required_but_not_really"] { display: none !important; }</style>';
185
-
186
- if( $echo !== false ) {
187
- echo $html;
188
- }
189
-
190
- // make sure this function only runs once
191
- $this->inline_css_printed = true;
192
-
193
- return $html;
194
  }
195
 
196
  /**
@@ -213,31 +181,18 @@ class MC4WP_Lite_Form_Manager {
213
  (form.classList) ? form.classList.add(className) : form.className += ' ' + className;
214
  }
215
 
216
- function hideHoneypot(h) {
217
- var n = document.createElement('input');
218
- n.type = 'hidden';
219
- n.name = h.name;
220
- n.style.display = 'none';
221
- n.value = h.value;
222
- h.parentNode.replaceChild(n,h);
223
- }
224
-
225
  var forms = document.querySelectorAll('.mc4wp-form');
226
  for (var i = 0; i < forms.length; i++) {
227
  (function(f) {
228
 
229
- /* make sure honeypot is hidden */
230
- var h = f.querySelector('input[name="_mc4wp_required_but_not_really"]');
231
- if(h) {
232
- hideHoneypot(h);
233
- }
234
-
235
  /* add class on submit */
236
  var b = f.querySelector('[type="submit"]');
237
- if(b.addEventListener) {
238
- b.addEventListener('click', addSubmittedClassToFormContainer);
239
- } else {
240
- b.attachEvent('click', addSubmittedClassToFormContainer);
 
 
241
  }
242
 
243
  })(forms[i]);
49
 
50
  public function add_hooks() {
51
  // load checkbox css if necessary
 
52
  add_action( 'wp_enqueue_scripts', array( $this, 'load_stylesheet' ) );
53
 
54
  // enable shortcodes in text widgets
157
  // Print small JS snippet later on in the footer.
158
  add_action( 'wp_footer', array( $this, 'print_js' ), 99 );
159
 
 
 
 
 
 
 
160
  // output form
161
+ return $form->output( $attributes['element_id'], $attributes, false );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  }
163
 
164
  /**
181
  (form.classList) ? form.classList.add(className) : form.className += ' ' + className;
182
  }
183
 
 
 
 
 
 
 
 
 
 
184
  var forms = document.querySelectorAll('.mc4wp-form');
185
  for (var i = 0; i < forms.length; i++) {
186
  (function(f) {
187
 
 
 
 
 
 
 
188
  /* add class on submit */
189
  var b = f.querySelector('[type="submit"]');
190
+ if(b.length > 0 ) {
191
+ if(b.addEventListener) {
192
+ b.addEventListener('click', addSubmittedClassToFormContainer);
193
+ } else {
194
+ b.attachEvent('click', addSubmittedClassToFormContainer);
195
+ }
196
  }
197
 
198
  })(forms[i]);
includes/class-form.php CHANGED
@@ -116,7 +116,7 @@ class MC4WP_Form {
116
  public function get_hidden_fields( $element_id, $attributes = array() ) {
117
 
118
  // hidden fields
119
- $hidden_fields = '<input type="text" name="_mc4wp_required_but_not_really" value="" />';
120
  $hidden_fields .= '<input type="hidden" name="_mc4wp_timestamp" value="'. time() . '" />';
121
  $hidden_fields .= '<input type="hidden" name="_mc4wp_form_id" value="'. $this->ID .'" />';
122
  $hidden_fields .= '<input type="hidden" name="_mc4wp_form_element_id" value="'. esc_attr( $element_id ) .'" />';
@@ -237,7 +237,7 @@ class MC4WP_Form {
237
  || ! $this->settings['hide_after_success']
238
  || ! $this->request->success ) {
239
 
240
- $form_opening_html = '<form method="post" role="form">';
241
  $visible_fields = $this->get_visible_fields( $element_id, $attributes, $response_html );
242
  $hidden_fields = $this->get_hidden_fields( $element_id, $attributes );
243
  $form_closing_html = '</form>';
116
  public function get_hidden_fields( $element_id, $attributes = array() ) {
117
 
118
  // hidden fields
119
+ $hidden_fields = '<div style="position: absolute; left:-5000px;"><input type="text" name="_mc4wp_required_but_not_really" value="" tabindex="-1" /></div>';
120
  $hidden_fields .= '<input type="hidden" name="_mc4wp_timestamp" value="'. time() . '" />';
121
  $hidden_fields .= '<input type="hidden" name="_mc4wp_form_id" value="'. $this->ID .'" />';
122
  $hidden_fields .= '<input type="hidden" name="_mc4wp_form_element_id" value="'. esc_attr( $element_id ) .'" />';
237
  || ! $this->settings['hide_after_success']
238
  || ! $this->request->success ) {
239
 
240
+ $form_opening_html = '<form method="post">';
241
  $visible_fields = $this->get_visible_fields( $element_id, $attributes, $response_html );
242
  $hidden_fields = $this->get_hidden_fields( $element_id, $attributes );
243
  $form_closing_html = '</form>';
includes/class-mailchimp.php CHANGED
@@ -13,14 +13,20 @@ class MC4WP_MailChimp {
13
  */
14
  public function get_lists( $force_renewal = false, $force_fallback = false ) {
15
 
 
 
 
 
 
16
  $cached_lists = get_transient( 'mc4wp_mailchimp_lists' );
17
 
18
  // if force_fallback is true, get lists from older transient
19
- if( true === $force_fallback ) {
20
  $cached_lists = get_transient( 'mc4wp_mailchimp_lists_fallback' );
21
  }
22
 
23
- if ( true === $force_renewal || false === $cached_lists || empty( $cached_lists ) ) {
 
24
 
25
  // make api request for lists
26
  $api = mc4wp_get_api();
13
  */
14
  public function get_lists( $force_renewal = false, $force_fallback = false ) {
15
 
16
+ if( $force_renewal ) {
17
+ delete_transient( 'mc4wp_mailchimp_lists' );
18
+ delete_transient( 'mc4wp_mailchimp_lists_fallback' );
19
+ }
20
+
21
  $cached_lists = get_transient( 'mc4wp_mailchimp_lists' );
22
 
23
  // if force_fallback is true, get lists from older transient
24
+ if( $force_fallback ) {
25
  $cached_lists = get_transient( 'mc4wp_mailchimp_lists_fallback' );
26
  }
27
 
28
+ // got lists? if not, proceed with API call.
29
+ if( empty( $cached_lists ) ) {
30
 
31
  // make api request for lists
32
  $api = mc4wp_get_api();
includes/class-request.php CHANGED
@@ -70,7 +70,7 @@ abstract class MC4WP_Request implements iMC4WP_Request {
70
  $config = array();
71
 
72
  foreach( $data as $key => $value ) {
73
- if( strpos( $key, '_mc4wp_' ) === 0 ) {
74
 
75
  // remove data from array
76
  unset( $data[$key] );
@@ -227,7 +227,7 @@ abstract class MC4WP_Request implements iMC4WP_Request {
227
  do_action( 'mc4wp_form_success', 0, $this->user_data['EMAIL'], $this->user_data );
228
 
229
  // check if we want to redirect the visitor
230
- if ( '' !== $this->form->settings['redirect'] ) {
231
  wp_redirect( $this->get_redirect_url() );
232
  exit;
233
  }
70
  $config = array();
71
 
72
  foreach( $data as $key => $value ) {
73
+ if( stripos( $key, '_mc4wp_' ) === 0 ) {
74
 
75
  // remove data from array
76
  unset( $data[$key] );
227
  do_action( 'mc4wp_form_success', 0, $this->user_data['EMAIL'], $this->user_data );
228
 
229
  // check if we want to redirect the visitor
230
+ if ( ! empty( $this->form->settings['redirect'] ) ) {
231
  wp_redirect( $this->get_redirect_url() );
232
  exit;
233
  }
includes/class-subscribe-request.php CHANGED
@@ -88,8 +88,13 @@ class MC4WP_Subscribe_Request extends MC4WP_Request {
88
 
89
  // did we succeed in subscribing with the parsed data?
90
  if( ! $result ) {
91
- $this->message_type = ( $api->get_error_code() === 214 ) ? 'already_subscribed' : 'error';
92
- $this->mailchimp_error = $api->get_error_message();
 
 
 
 
 
93
  } else {
94
  $this->message_type = 'subscribed';
95
 
88
 
89
  // did we succeed in subscribing with the parsed data?
90
  if( ! $result ) {
91
+ // don't grab mailchimp error if status code is "already_subscribed"
92
+ if( $api->get_error_code() === 214 ) {
93
+ $this->message_type = 'already_subscribed';
94
+ } else {
95
+ $this->message_type = 'error';
96
+ $this->mailchimp_error = $api->get_error_message();
97
+ }
98
  } else {
99
  $this->message_type = 'subscribed';
100
 
includes/functions/general.php CHANGED
@@ -40,7 +40,7 @@ function mc4wp_get_options( $key = '' ) {
40
  ),
41
  'form' => array(
42
  'css' => 'default',
43
- 'markup' => "<p>\n\t<label>{$email_label}: </label>\n\t<input type=\"email\" id=\"mc4wp_email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</p>\n\n<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>",
44
  'text_subscribed' => __( 'Thank you, your sign-up request was successful! Please check your e-mail inbox.', 'mailchimp-for-wp' ),
45
  'text_error' => __( 'Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp' ),
46
  'text_invalid_email' => __( 'Please provide a valid email address.', 'mailchimp-for-wp' ),
@@ -87,9 +87,43 @@ function mc4wp_get_options( $key = '' ) {
87
 
88
  /**
89
  * Gets the MailChimp for WP API class and injects it with the given API key
90
- *
91
  * @return MC4WP_API
92
  */
93
  function mc4wp_get_api() {
94
  return MC4WP_Lite::instance()->get_api();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  }
40
  ),
41
  'form' => array(
42
  'css' => 'default',
43
+ 'markup' => "<p>\n\t<label>{$email_label}: </label>\n\t<input type=\"email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</p>\n\n<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>",
44
  'text_subscribed' => __( 'Thank you, your sign-up request was successful! Please check your e-mail inbox.', 'mailchimp-for-wp' ),
45
  'text_error' => __( 'Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp' ),
46
  'text_invalid_email' => __( 'Please provide a valid email address.', 'mailchimp-for-wp' ),
87
 
88
  /**
89
  * Gets the MailChimp for WP API class and injects it with the given API key
90
+ * @since 1.0
91
  * @return MC4WP_API
92
  */
93
  function mc4wp_get_api() {
94
  return MC4WP_Lite::instance()->get_api();
95
+ }
96
+
97
+ /**
98
+ * Check whether a form was submitted
99
+ *
100
+ * @since 2.3.8
101
+ * @param int $form_id The ID of the form you want to check. (optional)
102
+ * @param string $element_id The ID of the form element you want to check, eg id="mc4wp-form-1" (optional)
103
+ * @return boolean
104
+ */
105
+ function mc4wp_form_is_submitted( $form_id = 0, $element_id = null ) {
106
+ $form = MC4WP_Form::get();
107
+
108
+ if( ! $form instanceof MC4WP_Form ) {
109
+ return false;
110
+ }
111
+
112
+ return $form->is_submitted( $element_id );
113
+ }
114
+
115
+ /**
116
+ * @since 2.3.8
117
+ * @param int $form_id
118
+ * @return string
119
+ */
120
+ function mc4wp_form_get_response_html( $form_id = 0 ) {
121
+ $form = MC4WP_Form::get();
122
+
123
+ // return empty string if form isn't submitted.
124
+ if( ! $form instanceof MC4WP_Form || ! $form->is_submitted() ) {
125
+ return '';
126
+ }
127
+
128
+ return $form->request->get_response_html();
129
  }
includes/integrations/class-edd.php CHANGED
@@ -21,7 +21,7 @@ class MC4WP_EDD_Integration extends MC4WP_Integration {
21
 
22
  parent::__construct();
23
 
24
- add_action( 'edd_purchase_form_user_info', array( $this, 'output_checkbox' ) );
25
  add_action( 'edd_payment_meta', array( $this, 'save_checkbox_value' ) );
26
  add_action( 'edd_complete_purchase', array( $this, 'subscribe_from_edd'), 50 );
27
  }
21
 
22
  parent::__construct();
23
 
24
+ add_action( 'edd_purchase_form_user_info_fields', array( $this, 'output_checkbox' ) );
25
  add_action( 'edd_payment_meta', array( $this, 'save_checkbox_value' ) );
26
  add_action( 'edd_complete_purchase', array( $this, 'subscribe_from_edd'), 50 );
27
  }
includes/integrations/class-integration.php CHANGED
@@ -174,7 +174,7 @@ abstract class MC4WP_Integration {
174
 
175
  // after checkbox HTML (..., honeypot, closing comment)
176
  $after = apply_filters( 'mc4wp_after_checkbox', '', $this->type );
177
- $after .= '<textarea name="_mc4wp_required_but_not_really" style="display: none !important;"></textarea>';
178
  $after .= '<!-- / MailChimp for WordPress -->';
179
 
180
  return $before . $content . $after;
174
 
175
  // after checkbox HTML (..., honeypot, closing comment)
176
  $after = apply_filters( 'mc4wp_after_checkbox', '', $this->type );
177
+ $after .= '<div style="position: absolute; left:-5000px;"><input type="text" name="_mc4wp_required_but_not_really" value="" tabindex="-1" /></div>';
178
  $after .= '<!-- / MailChimp for WordPress -->';
179
 
180
  return $before . $content . $after;
includes/views/api-settings.php CHANGED
@@ -55,68 +55,86 @@ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
55
  </p>
56
  </form>
57
 
58
- <table class="wp-list-table widefat">
59
- <thead>
60
- <tr>
61
- <th class="mc4wp-hide-smallscreens" scope="col">List ID</th>
62
- <th scope="col">List Name</th>
63
- <th scope="col">Merge Fields <code>TAG</code></th>
64
- <th scope="col">Groupings</th>
65
- <th class="mc4wp-hide-smallscreens" scope="col">Subscribers</th>
66
- </tr>
67
- </thead>
68
- <tbody>
69
- <?php
70
- if( ! empty( $lists ) && is_array( $lists ) ) {
71
- foreach($lists as $list) { ?>
72
-
73
- <tr valign="top">
74
- <td class="mc4wp-hide-smallscreens"><?php echo esc_html( $list->id ); ?></td>
75
- <td><?php echo esc_html( $list->name ); ?></td>
76
-
77
- <td>
78
- <?php if( ! empty( $list->merge_vars ) && is_array( $list->merge_vars ) ) { ?>
79
- <ul class="ul-square" style="margin-top: 0;">
80
- <?php foreach( $list->merge_vars as $merge_var ) { ?>
81
- <li><?php echo esc_html( $merge_var->name ); if( $merge_var->req ) { echo '<span style="color:red;">*</span>'; } ?> <code><?php echo esc_html( $merge_var->tag ); ?></code></li>
82
- <?php } ?>
83
- </ul>
84
- <?php } ?>
85
- </td>
86
- <td>
87
- <?php
88
- if( ! empty( $list->interest_groupings ) && is_array( $list->interest_groupings ) ) {
89
- foreach($list->interest_groupings as $grouping) { ?>
90
- <strong><?php echo esc_html( $grouping->name ); ?></strong>
91
-
92
- <?php if( ! empty( $grouping->groups ) && is_array( $grouping->groups ) ) { ?>
93
- <ul class="ul-square">
94
- <?php foreach( $grouping->groups as $group ) { ?>
95
- <li><?php echo esc_html( $group->name ); ?></li>
96
- <?php } ?>
97
- </ul>
98
- <?php } ?>
99
- <?php }
100
- } else {
101
- ?>-<?php
102
- } ?>
103
 
104
- </td>
105
- <td class="mc4wp-hide-smallscreens"><?php echo esc_html( $list->subscriber_count ); ?></td>
 
 
 
 
 
106
  </tr>
107
- <?php
108
- }
109
- } else { ?>
110
  <tr>
111
- <td colspan="5">
112
- <p><?php _e( 'No lists were found in your MailChimp account', 'mailchimp-for-wp' ); ?>.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  </td>
114
  </tr>
115
- <?php
116
- }
117
- ?>
118
- </tbody>
119
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
 
121
  <form method="post" action="">
122
  <input type="hidden" name="mc4wp-renew-cache" value="1" />
55
  </p>
56
  </form>
57
 
58
+ <div class="mc4wp-lists-overview">
59
+ <?php if( empty( $lists ) || ! is_array( $lists ) ) { ?>
60
+ <p><?php _e( 'No lists were found in your MailChimp account', 'mailchimp-for-wp' ); ?>.</p>
61
+ <?php } else {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
+ printf( '<p>' . __( 'A total of %d lists were found in your MailChimp account.', 'mailchimp-for-wp' ) . '</p>', count( $lists ) );
64
+
65
+ foreach ( $lists as $list ) { ?>
66
+
67
+ <table class="widefat" cellspacing="0">
68
+ <tr>
69
+ <td colspan="2"><h3><?php echo esc_html( $list->name ); ?></h3></td>
70
  </tr>
 
 
 
71
  <tr>
72
+ <th width="150">List ID</th>
73
+ <td><?php echo esc_html( $list->id ); ?></td>
74
+ </tr>
75
+ <tr>
76
+ <th># of subscribers</th>
77
+ <td><?php echo esc_html( $list->subscriber_count ); ?></td>
78
+ </tr>
79
+ <tr>
80
+ <th>Fields</th>
81
+ <td style="padding: 0; border: 0;">
82
+ <?php if ( ! empty( $list->merge_vars ) && is_array( $list->merge_vars ) ) { ?>
83
+ <table class="widefat fixed" cellspacing="0">
84
+ <thead>
85
+ <tr>
86
+ <th>Name</th>
87
+ <th>Tag</th>
88
+ <th>Type</th>
89
+ </tr>
90
+ </thead>
91
+ <?php foreach ( $list->merge_vars as $merge_var ) { ?>
92
+ <tr title="<?php printf( __( '%s (%s) with field type %s.', 'mailchimp-for-wp' ), esc_html( $merge_var->name ), esc_html( $merge_var->tag ), esc_html( $merge_var->field_type ) ); ?>">
93
+ <td><?php echo esc_html( $merge_var->name );
94
+ if ( $merge_var->req ) {
95
+ echo '<span style="color:red;">*</span>';
96
+ } ?></td>
97
+ <td><code><?php echo esc_html( $merge_var->tag ); ?></code></td>
98
+ <td><?php echo esc_html( $merge_var->field_type ); ?></td>
99
+ </tr>
100
+ <?php } ?>
101
+ </table>
102
+ <?php } ?>
103
  </td>
104
  </tr>
105
+ <?php if ( ! empty( $list->interest_groupings ) && is_array( $list->interest_groupings ) ) { ?>
106
+ <tr>
107
+ <th>Interest Groupings</th>
108
+ <td style="padding: 0; border: 0;">
109
+ <table class="widefat fixed" cellspacing="0">
110
+ <thead>
111
+ <tr>
112
+ <th>Name</th>
113
+ <th>Groups</th>
114
+ </tr>
115
+ </thead>
116
+ <?php foreach ( $list->interest_groupings as $grouping ) { ?>
117
+ <tr title="<?php esc_attr( printf( __( '%s (ID: %s) with type %s.', 'mailchimp-for-wp' ), $grouping->name, $grouping->id, $grouping->form_field ) ); ?>">
118
+ <td><?php echo esc_html( $grouping->name ); ?></td>
119
+ <td>
120
+ <ul class="ul-square">
121
+ <?php foreach ( $grouping->groups as $group ) { ?>
122
+ <li><?php echo esc_html( $group->name ); ?></li>
123
+ <?php } ?>
124
+ </ul>
125
+ </td>
126
+ </tr>
127
+ <?php } ?>
128
+ </table>
129
+
130
+ </td>
131
+ </tr>
132
+ <?php } ?>
133
+ </table>
134
+ <br style="margin: 20px 0;" />
135
+ <?php } // end foreach $lists
136
+ } // end if empty ?>
137
+ </div>
138
 
139
  <form method="post" action="">
140
  <input type="hidden" name="mc4wp-renew-cache" value="1" />
includes/views/parts/admin-upgrade-to-pro.php CHANGED
@@ -8,7 +8,7 @@ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
8
  <div class="mc4wp-box" id="mc4wp-upgrade-box">
9
  <h3>MailChimp for WordPress Pro</h3>
10
  <p><em><?php _e( 'This plugin has an even better premium version, you will absolutely love it.', 'mailchimp-for-wp' ); ?></em></p>
11
- <p><?php _e( 'Some differences with this free version of the plugin:', 'mailchimp-for-wp' ); ?></p>
12
  <ul class="ul-square">
13
  <li>
14
  <strong><?php _e( 'Multiple forms', 'mailchimp-for-wp' ); ?></strong><br />
@@ -29,6 +29,33 @@ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
29
  </ul>
30
  <p>
31
  <a class="button button-primary button-large" href="https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=upgrade-box"><?php _e( 'Upgrade Now', 'mailchimp-for-wp' ); ?></a>
32
- <a class="button" href="https://mc4wp.com/demo/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=upgrade-box"><?php _e( 'View Demo', 'mailchimp-for-wp' ); ?></a></p>
33
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  </div>
8
  <div class="mc4wp-box" id="mc4wp-upgrade-box">
9
  <h3>MailChimp for WordPress Pro</h3>
10
  <p><em><?php _e( 'This plugin has an even better premium version, you will absolutely love it.', 'mailchimp-for-wp' ); ?></em></p>
11
+ <p><?php _e( 'Some of the benefits over this free version:', 'mailchimp-for-wp' ); ?></p>
12
  <ul class="ul-square">
13
  <li>
14
  <strong><?php _e( 'Multiple forms', 'mailchimp-for-wp' ); ?></strong><br />
29
  </ul>
30
  <p>
31
  <a class="button button-primary button-large" href="https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=upgrade-box"><?php _e( 'Upgrade Now', 'mailchimp-for-wp' ); ?></a>
32
+ <a class="button" href="https://mc4wp.com/demo/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=upgrade-box"><?php _e( 'View Demo', 'mailchimp-for-wp' ); ?></a>
33
  </p>
34
+ </div>
35
+ <div class="mc4wp-box" id="mc4wp-optin-box">
36
+
37
+ <?php $user = wp_get_current_user(); ?>
38
+ <!-- Begin MailChimp Signup Form -->
39
+ <div id="mc_embed_signup">
40
+ <h4 class="mc4wp-title"><?php _e( 'More subscribers, better newsletters.', 'mailchimp-for-wp' ); ?></h4>
41
+ <p><?php _e( 'Learn how to best grow your lists & write better emails by subscribing to our monthly tips.', 'mailchimp-for-wp' ); ?></p>
42
+ <form action="//mc4wp.us1.list-manage.com/subscribe/post?u=a2d08947dcd3683512ce174c5&amp;id=a940232df9" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" target="_blank">
43
+ <p>
44
+ <label>Email Address </label>
45
+ <input type="email" value="<?php echo esc_attr( $user->user_email ); ?>" name="EMAIL" class="regular-text" required>
46
+ </p>
47
+ <p>
48
+ <label>First Name </label>
49
+ <input type="text" value="<?php echo esc_attr( $user->user_firstname ); ?>" name="FNAME" class="regular-text" id="mce-FNAME">
50
+ </p>
51
+ <div style="position: absolute; left: -5000px;">
52
+ <input type="text" name="b_a2d08947dcd3683512ce174c5_a940232df9" tabindex="-1" value="" />
53
+ </div>
54
+ <p>
55
+ <input type="submit" value="Subscribe" name="subscribe" class="button">
56
+ </p>
57
+
58
+ <input type="hidden" name="SOURCE" value="free-plugin" />
59
+ </form>
60
+ </div>
61
  </div>
languages/mailchimp-for-wp-cs_CZ.mo CHANGED
Binary file
languages/mailchimp-for-wp-cs_CZ.po CHANGED
@@ -11,7 +11,7 @@ msgstr ""
11
  "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
12
  "PO-Revision-Date: 2015-05-26 14:42+0000\n"
13
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
14
- "Language-Team: Czech (Czech Republic) (http://www.transifex.com/p/mailchimp-for-wordpress/language/cs_CZ/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
11
  "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
12
  "PO-Revision-Date: 2015-05-26 14:42+0000\n"
13
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
14
+ "Language-Team: Czech (Czech Republic) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/cs_CZ/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
languages/mailchimp-for-wp-de_CH.mo CHANGED
Binary file
languages/mailchimp-for-wp-de_CH.po CHANGED
@@ -11,7 +11,7 @@ msgstr ""
11
  "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
12
  "PO-Revision-Date: 2015-06-20 14:02+0000\n"
13
  "Last-Translator: Stefan Oderbolz <oderbolz@gmail.com>\n"
14
- "Language-Team: German (Switzerland) (http://www.transifex.com/p/mailchimp-for-wordpress/language/de_CH/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
11
  "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
12
  "PO-Revision-Date: 2015-06-20 14:02+0000\n"
13
  "Last-Translator: Stefan Oderbolz <oderbolz@gmail.com>\n"
14
+ "Language-Team: German (Switzerland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_CH/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
languages/mailchimp-for-wp-de_DE.mo CHANGED
Binary file
languages/mailchimp-for-wp-de_DE.po CHANGED
@@ -1,7 +1,11 @@
1
  # Copyright (C) 2015 Danny van Kooten
2
  # This file is distributed under the GPL v3.
3
  # Translators:
 
 
4
  # Freakspot, 2014
 
 
5
  # S L <gitter.s@gmx.de>, 2015
6
  # Stefan Oderbolz <oderbolz@gmail.com>, 2015
7
  # Uwe <uwe.keim@gmail.com>, 2015
@@ -9,10 +13,10 @@ msgid ""
9
  msgstr ""
10
  "Project-Id-Version: MailChimp for WordPress\n"
11
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
12
- "POT-Creation-Date: 2015-02-25 06:33:40+00:00\n"
13
- "PO-Revision-Date: 2015-03-17 16:51+0000\n"
14
- "Last-Translator: Uwe <uwe.keim@gmail.com>\n"
15
- "Language-Team: German (Germany) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/de_DE/)\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -28,244 +32,241 @@ msgstr ""
28
  "X-Poedit-SourceCharset: utf-8\n"
29
  "X-Textdomain-Support: yes\n"
30
 
31
- #: mailchimp-for-wordpress/includes/class-admin.php:150
32
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:187
33
  msgid "Settings"
34
  msgstr "Einstellungen"
35
 
36
- #: mailchimp-for-wordpress/includes/class-admin.php:169
37
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
38
  msgid "Upgrade to MailChimp for WordPress Pro"
39
  msgstr "Wechsle zu MailChimp für WordPress Pro"
40
 
41
- #: mailchimp-for-wordpress/includes/class-admin.php:188
42
  msgid "MailChimp API Settings"
43
- msgstr "MailChimp-API-Einstellungen"
44
 
45
- #: mailchimp-for-wordpress/includes/class-admin.php:189
46
  msgid "MailChimp"
47
  msgstr "MailChimp"
48
 
49
- #: mailchimp-for-wordpress/includes/class-admin.php:194
50
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:537
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
53
  msgid "Checkbox Settings"
54
- msgstr "Kontrollkästchen-Einstellungen"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:195
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:538
58
  msgid "Checkboxes"
59
- msgstr "Kontrollkästchen"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:200
62
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
63
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:385
64
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:543
65
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
66
  msgid "Form Settings"
67
  msgstr "Formulareinstellungen"
68
 
69
- #: mailchimp-for-wordpress/includes/class-admin.php:201
70
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:544
71
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
72
  msgid "Forms"
73
  msgstr "Formulare"
74
 
75
- #: mailchimp-for-wordpress/includes/class-admin.php:205
76
- #: mailchimp-for-wordpress/includes/class-admin.php:206
77
  msgid "Upgrade to Pro"
78
  msgstr "Auf Pro upgraden"
79
 
80
- #: mailchimp-for-wordpress/includes/class-admin.php:359
81
  msgid "This option is only available in MailChimp for WordPress Pro."
82
  msgstr "Diese Option ist nur für MailChimp für Wordpress Pro verfügbar."
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:361
85
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
86
  #: mailchimp-for-wordpress/includes/views/form-settings.php:36
87
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
88
  msgid "(PRO ONLY)"
89
  msgstr "(NUR PRO)"
90
 
91
- #: mailchimp-for-wordpress/includes/class-admin.php:362
92
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:634
93
  msgid "Button text"
94
- msgstr "Schaltflächenbeschriftung"
95
 
96
- #: mailchimp-for-wordpress/includes/class-admin.php:363
97
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:38
98
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:635
99
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:58
100
  msgid "Initial value"
101
  msgstr "Anfangsangaben"
102
 
103
- #: mailchimp-for-wordpress/includes/class-admin.php:364
104
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
105
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
106
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:38
107
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:636
108
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:48
109
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:53
110
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:58
111
  msgid "(optional)"
112
  msgstr "(optional)"
113
 
114
- #: mailchimp-for-wordpress/includes/class-admin.php:365
115
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:637
116
  msgid "Label for"
117
  msgstr "Beschreibung für"
118
 
119
- #: mailchimp-for-wordpress/includes/class-admin.php:366
120
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:638
121
  msgid "(or leave empty)"
122
  msgstr "(oder leer lassen)"
123
 
124
- #: mailchimp-for-wordpress/includes/class-admin.php:367
125
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:639
126
  msgid "Subscribe"
127
  msgstr "abonnieren"
128
 
129
- #: mailchimp-for-wordpress/includes/class-admin.php:391
130
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:677
 
 
 
 
 
131
  msgid "Comment form"
132
  msgstr "Kommentarformular"
133
 
134
- #: mailchimp-for-wordpress/includes/class-admin.php:392
135
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:678
136
  msgid "Registration form"
137
  msgstr "Registrierungsformular"
138
 
139
- #: mailchimp-for-wordpress/includes/class-admin.php:396
140
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:682
141
  msgid "MultiSite forms"
142
  msgstr "MultiSite-Formular"
143
 
144
- #: mailchimp-for-wordpress/includes/class-admin.php:400
145
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:686
146
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:301
147
  msgid "BuddyPress registration"
148
  msgstr "BuddyPress-Formular"
149
 
150
- #: mailchimp-for-wordpress/includes/class-admin.php:408
151
- #: mailchimp-for-wordpress/includes/class-admin.php:412
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:694
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:698
154
  msgid "%s checkout"
155
  msgstr "%s Checkout"
156
 
157
- #: mailchimp-for-wordpress/includes/class-admin.php:440
158
  msgid ""
159
  "The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
160
  "first 100 lists are shown."
161
  msgstr "Das Plugin kann nur max. 100 Listen von MailChimp abrufen, es werden also nur deine ersten 100 Listen angezeigt."
162
 
163
- #: mailchimp-for-wordpress/includes/class-admin.php:445
164
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:742
165
  msgid "Renewed MailChimp cache."
166
- msgstr "MailChimp-Cache erneuern."
167
 
168
- #: mailchimp-for-wordpress/includes/class-admin.php:447
169
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:744
170
  msgid "Failed to renew MailChimp cache - please try again later."
171
  msgstr "Konnte den MailChimp Cache nicht erneuern - Bitte später noch einmal probieren."
172
 
173
- #: mailchimp-for-wordpress/includes/class-admin.php:480
174
- msgid "An EMAIL field. Example: <code>%s</code>"
175
- msgstr "Ein E-Mail-Feld. Beispiel: <code>%s</code>"
176
-
177
- #: mailchimp-for-wordpress/includes/class-admin.php:486
178
- msgid "A submit button. Example: <code>%s</code>"
179
- msgstr "Eine Bestätigungs-Schaltfläche. Beispiel: <code>%s</code>"
180
-
181
- #: mailchimp-for-wordpress/includes/class-admin.php:486
182
- msgid "Sign Up"
183
- msgstr "Registrieren"
184
-
185
- #: mailchimp-for-wordpress/includes/class-admin.php:511
186
- msgid "A '%s' field"
187
- msgstr "Ein '%s' Feld."
188
-
189
- #: mailchimp-for-wordpress/includes/class-form-request.php:702
190
- msgid "Please select at least one list to subscribe to."
191
- msgstr "Bitte wähle wenigstens eine Mailingsliste zum Abonnieren aus."
192
-
193
- #: mailchimp-for-wordpress/includes/class-widget.php:20
194
  msgid "MailChimp Sign-Up Form"
195
- msgstr "MailChimp-Registrierungsformular"
196
 
197
- #: mailchimp-for-wordpress/includes/class-widget.php:22
198
  msgid "Displays your MailChimp for WordPress sign-up form"
199
  msgstr "Zeigt dein MailChimp für WordPress Registrierungsformular an"
200
 
201
- #: mailchimp-for-wordpress/includes/class-widget.php:66
202
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:71
203
  msgid "Newsletter"
204
  msgstr "Newsletter"
205
 
206
- #: mailchimp-for-wordpress/includes/class-widget.php:69
207
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:82
208
  msgid "Title:"
209
  msgstr "Titel:"
210
 
211
- #: mailchimp-for-wordpress/includes/class-widget.php:73
212
  msgid ""
213
  "You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
214
  " form settings</a>."
215
  msgstr "Du kannst dein Registrierungsformular in den <a href=\"%s\">MailChimp für WordPress Formulareinstellungen</a> editieren."
216
 
217
- #: mailchimp-for-wordpress/includes/functions/general.php:21
218
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
219
  #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
 
220
  msgid "Email address"
221
- msgstr "E-Mail-Adresse"
222
 
223
- #: mailchimp-for-wordpress/includes/functions/general.php:22
224
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
 
225
  msgid "Your email address"
226
- msgstr "Deine E-Mail-Adresse"
227
 
228
- #: mailchimp-for-wordpress/includes/functions/general.php:23
229
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:293
 
230
  msgid "Sign up"
231
  msgstr "Registrieren"
232
 
233
- #: mailchimp-for-wordpress/includes/functions/general.php:30
234
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
235
  msgid "Sign me up for the newsletter!"
236
  msgstr "Trage mich in den Newsletter ein!"
237
 
238
- #: mailchimp-for-wordpress/includes/functions/general.php:50
239
  msgid ""
240
  "Thank you, your sign-up request was successful! Please check your e-mail "
241
  "inbox."
242
  msgstr "Dankeschön, Deine Registrierungsanfrage war erfolgreich! Bitte überprüfe Deinen E-Mail-Eingang."
243
 
244
- #: mailchimp-for-wordpress/includes/functions/general.php:51
245
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
246
  msgid "Oops. Something went wrong. Please try again later."
247
  msgstr "Oops. Irgendwas ist schief gelaufen. Bitte versuche es später noch mal."
248
 
249
- #: mailchimp-for-wordpress/includes/functions/general.php:52
250
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
251
  msgid "Please provide a valid email address."
252
- msgstr "Bitte gib eine gültige E-Mail-Adresse ein."
253
 
254
- #: mailchimp-for-wordpress/includes/functions/general.php:53
255
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
256
  msgid "Given email address is already subscribed, thank you!"
257
- msgstr "Die angegebene E-Mail-Adresse befindet sich bereits im Verteiler, danke!"
258
 
259
- #: mailchimp-for-wordpress/includes/functions/general.php:54
260
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
261
  msgid "Please complete the CAPTCHA."
262
  msgstr "Bitte das CAPTCHA vervollständigen."
263
 
264
- #: mailchimp-for-wordpress/includes/functions/general.php:55
265
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:56
266
  msgid "Please fill in the required fields."
267
  msgstr "Bitte fülle die erforderlichen Felder aus."
268
 
 
 
 
 
 
 
 
 
 
 
269
  #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
270
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
271
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
@@ -332,40 +333,51 @@ msgstr "Ja"
332
  msgid "No"
333
  msgstr "Nein"
334
 
335
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
336
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:239
337
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:311
338
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:320
 
 
 
 
339
  msgid "MailChimp for WordPress - Error"
340
  msgstr "MailChimp für WordPress - Fehler"
341
 
342
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
 
343
  msgid ""
344
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
345
  "settings</a>."
346
- msgstr "Bitte wähle aus, welches Registrierungsformular Du hier in den <a href=\"%s\">Widget-Einstellungen</a> anzeigen möchtest."
347
 
348
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
349
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:319
 
 
350
  msgid "This message is only visible to administrators for debugging purposes."
351
  msgstr "Diese Nachricht ist nur sichtbar für Administratoren für Debugging-Zwecke."
352
 
353
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:312
 
354
  msgid ""
355
  "The MailChimp server returned the following error message as a response to "
356
  "our sign-up request:"
357
- msgstr "Der MailChimp-Server hat die folgende Fehlernachricht als Antwort auf deine Registrierungsanfrage zurückgegeben."
358
 
359
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:314
 
360
  msgid "This is the data that was sent to MailChimp:"
361
  msgstr "Dies sind die Daten, die zu MailChimp gesendet wurden:"
362
 
363
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:315
364
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:664
 
365
  msgid "Email address:"
366
  msgstr "E-Mail-Adresse:"
367
 
368
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:317
 
369
  msgid "Merge variables:"
370
  msgstr "Variablen zusammenführen:"
371
 
@@ -377,12 +389,12 @@ msgstr "MailChimp für WordPress"
377
  #: mailchimp-for-wordpress/includes/views/form-settings.php:99
378
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
379
  msgid "MailChimp Settings"
380
- msgstr "MailChimp-Einstellungen"
381
 
382
  #: mailchimp-for-wordpress/includes/views/api-settings.php:22
383
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
384
  msgid "API Settings"
385
- msgstr "API-Einstellungen"
386
 
387
  #: mailchimp-for-wordpress/includes/views/api-settings.php:24
388
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
@@ -397,22 +409,22 @@ msgstr "NICHT VERBUNDEN"
397
  #: mailchimp-for-wordpress/includes/views/api-settings.php:32
398
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
399
  msgid "API Key"
400
- msgstr "API-Schlüssel"
401
 
402
  #: mailchimp-for-wordpress/includes/views/api-settings.php:34
403
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
404
  msgid "Your MailChimp API key"
405
- msgstr "Dein MailChimp-API-Schlüssel"
406
 
407
  #: mailchimp-for-wordpress/includes/views/api-settings.php:35
408
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
409
  msgid "Get your API key here."
410
- msgstr "Den API-Schlüssel bekommst du hier."
411
 
412
  #: mailchimp-for-wordpress/includes/views/api-settings.php:47
413
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
414
  msgid "MailChimp Data"
415
- msgstr "MailChimp-Daten"
416
 
417
  #: mailchimp-for-wordpress/includes/views/api-settings.php:48
418
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
@@ -420,42 +432,42 @@ msgid ""
420
  "The table below shows your MailChimp lists data. If you applied changes to "
421
  "your MailChimp lists, please use the following button to renew your cached "
422
  "data."
423
- msgstr "Die Tabelle zeigt die Daten zu deinen MailChimp-Listen. Wenn du bei den MailChimp-Listen Änderungen gemacht hast, nutze bitte die folgenden Schaltfläche um die Daten neu zu laden."
424
 
425
  #: mailchimp-for-wordpress/includes/views/api-settings.php:54
426
  #: mailchimp-for-wordpress/includes/views/api-settings.php:125
427
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
428
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
429
  msgid "Renew MailChimp lists"
430
- msgstr "MailChimp-Listen neu laden"
431
 
432
  #: mailchimp-for-wordpress/includes/views/api-settings.php:112
433
  msgid "No lists were found in your MailChimp account"
434
- msgstr "In deinem MailChimp-Konto wurden keine Listen gefunden"
435
 
436
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
437
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
438
  msgid ""
439
  "To use sign-up checkboxes, select at least one list and one form to add the "
440
  "checkbox to."
441
- msgstr "Um die Registrierungs-Kontrollkästchen zu nutzen, wähle mindestens eine Liste und ein Formular, um das Kontrollkästchen auch hinzuzufügen."
442
 
443
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
444
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
445
  msgid "MailChimp settings for checkboxes"
446
- msgstr "MailChimp-Einstellungen für Kontrollkästchen"
447
 
448
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
449
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
450
  msgid ""
451
  "If you want to use sign-up checkboxes, select at least one MailChimp list to"
452
  " subscribe people to."
453
- msgstr "Wenn du die Registrierungs-Kontrollkästchen nutzen möchtest, wähle mindestens eine MailChimp-Liste in welche die Adressen gespeichert werden."
454
 
455
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
456
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
457
  msgid "MailChimp Lists"
458
- msgstr "MailChimp-Listen"
459
 
460
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
461
  #: mailchimp-for-wordpress/includes/views/form-settings.php:48
@@ -469,7 +481,7 @@ msgstr "Keine Listen gefunden, <a href=\"%s\">hast du MailChimp bereits angebund
469
  msgid ""
470
  "Select the list(s) to which people who check the checkbox should be "
471
  "subscribed."
472
- msgstr "Wähle die Listen, zu denen die Abonnenten die das Kontrollkästchen ausgewählt haben, eingetragen werden sollen."
473
 
474
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
475
  #: mailchimp-for-wordpress/includes/views/form-settings.php:102
@@ -477,7 +489,7 @@ msgstr "Wähle die Listen, zu denen die Abonnenten die das Kontrollkästchen aus
477
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
478
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
479
  msgid "Double opt-in?"
480
- msgstr "Double-Opt-in?"
481
 
482
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:113
@@ -487,38 +499,38 @@ msgstr "Double-Opt-in?"
487
  msgid ""
488
  "Select \"yes\" if you want people to confirm their email address before "
489
  "being subscribed (recommended)"
490
- msgstr "Wähle \"ja\" wenn du möchtest, dass die E-Mail-Adresse bestätigt werden muss. (empfohlen)"
491
 
492
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
493
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
494
  msgid "Checkbox settings"
495
- msgstr "Kontrollkästchen-Einstellungen"
496
 
497
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
498
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
499
  msgid "Add the checkbox to these forms"
500
- msgstr "Füge das Kontrollkästchen zu diesen Formularen hinzu"
501
 
502
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
504
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
505
- msgstr "Wenn ein Formular ausgewählt wird, wird automatisch das Registrierungs-Kontrollkästchen hinzugefügt."
506
 
507
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
508
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
509
  msgid "Checkbox label text"
510
- msgstr "Kontrollkästchen-Beschriftungstext"
511
 
512
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
513
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
514
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
515
  msgid "HTML tags like %s are allowed in the label text."
516
- msgstr "HTML-Tags wie %s sind in den Beschriftungen erlaubt."
517
 
518
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
519
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
520
  msgid "Pre-check the checkbox?"
521
- msgstr "Das Kontrollkästchen vorauswählen?"
522
 
523
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
524
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
@@ -528,12 +540,12 @@ msgstr "Allgemeines CSS laden?"
528
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
529
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
530
  msgid "Select \"yes\" if the checkbox appears in a weird place."
531
- msgstr "Wähle \"ja\", falls das Kontrollkästchen an einer unerwünschten Stelle angezeigt wird."
532
 
533
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
534
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
535
  msgid "WooCommerce checkbox position"
536
- msgstr "WooCommerce-Kontrollkästchen-Position"
537
 
538
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
539
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
@@ -549,13 +561,13 @@ msgstr "Nach den zusätzlichen Informationen"
549
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
550
  msgid ""
551
  "Choose the position for the checkbox in your WooCommerce checkout form."
552
- msgstr "Wähle die Position für das Kontrollkästchen in deinem WooCommerce-Checkout-Formular."
553
 
554
  #: mailchimp-for-wordpress/includes/views/form-settings.php:15
555
  msgid ""
556
  "To use the MailChimp sign-up form, configure the form below and then either "
557
  "paste %s in the content of a post or page or use the widget."
558
- msgstr "Um das MailChimp-Registrierungsformular nutzen zu können, konfiguriere das untenstehende Formular und kopiere dann %s in den Inhalt einer Seite oder eines Posts oder benutze ein Widget."
559
 
560
  #: mailchimp-for-wordpress/includes/views/form-settings.php:20
561
  msgid "Required form settings"
@@ -564,22 +576,22 @@ msgstr "Erforderliche Formulareinstellungen"
564
  #: mailchimp-for-wordpress/includes/views/form-settings.php:24
565
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
566
  msgid "Load form styles (CSS)?"
567
- msgstr "Lade Formular-Stile (CSS)?"
568
 
569
  #: mailchimp-for-wordpress/includes/views/form-settings.php:28
570
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
571
  msgid "Yes, load basic form styles"
572
- msgstr "Ja, lade Standard-Formular-Stile"
573
 
574
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
575
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
576
  msgid "Yes, load my custom form styles"
577
- msgstr "Ja, lade meine eigenen Formular-Stile"
578
 
579
  #: mailchimp-for-wordpress/includes/views/form-settings.php:30
580
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
581
  msgid "Yes, load default form theme"
582
- msgstr "Ja, lade Standard-Formular-Theme"
583
 
584
  #: mailchimp-for-wordpress/includes/views/form-settings.php:31
585
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
@@ -609,13 +621,13 @@ msgstr "Dunkles Theme"
609
  #: mailchimp-for-wordpress/includes/views/form-settings.php:36
610
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
611
  msgid "Custom Color Theme"
612
- msgstr "Benutzerdefiniertes Farben-Theme"
613
 
614
  #: mailchimp-for-wordpress/includes/views/form-settings.php:41
615
  msgid ""
616
  "If you want to load some default CSS styles, select \"basic formatting "
617
  "styles\" or choose one of the color themes"
618
- msgstr "Wenn du ein %sbenutzerdefiniertes Stylesheet erstellt%s hast und dieses laden möchtest, wähle \"eigenen Formularstil\". Andernfalls wähle eines der Standard-Formularstile oder eines der Standard-Themes."
619
 
620
  #: mailchimp-for-wordpress/includes/views/form-settings.php:45
621
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
@@ -633,11 +645,11 @@ msgid "Form mark-up"
633
  msgstr "Formular Markup"
634
 
635
  #: mailchimp-for-wordpress/includes/views/form-settings.php:79
636
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
637
  msgid ""
638
  "Use the shortcode %s to display this form inside a post, page or text "
639
  "widget."
640
- msgstr "Benutze diesen Shortcode %s um dieses Formular innerhalb eines Posts, Seite oder Text-Widgets zu nutzen."
641
 
642
  #: mailchimp-for-wordpress/includes/views/form-settings.php:92
643
  #: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
@@ -649,7 +661,7 @@ msgstr "In deinem Formular fehlen die folgenden (erforderlichen) Felder:"
649
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
650
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
651
  msgid "Send Welcome Email?"
652
- msgstr "Willkommens-E-Mail senden?"
653
 
654
  #: mailchimp-for-wordpress/includes/views/form-settings.php:128
655
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
@@ -658,7 +670,7 @@ msgstr "Willkommens-E-Mail senden?"
658
  msgid ""
659
  "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
660
  "succeeds (only when double opt-in is disabled)."
661
- msgstr "Wähle \"ja\" wenn du die Listen-Willkommens-E-Mail versenden möchtest, wenn ein Abonnement erfolgreich war (nur wenn Double-Opt-in deaktiviert ist)."
662
 
663
  #: mailchimp-for-wordpress/includes/views/form-settings.php:131
664
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
@@ -692,19 +704,19 @@ msgstr "Wähle \"ja\" wenn du die Interessengruppen mit den angegebenen Gruppen
692
 
693
  #: mailchimp-for-wordpress/includes/views/form-settings.php:156
694
  msgid "Form Settings & Messages"
695
- msgstr "Formular-Einstellungen & -Nachrichten"
696
 
697
  #: mailchimp-for-wordpress/includes/views/form-settings.php:160
698
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
699
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
700
  msgid "Enable AJAX form submission?"
701
- msgstr "AJAX-Formular aktivieren?"
702
 
703
  #: mailchimp-for-wordpress/includes/views/form-settings.php:171
704
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
705
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
706
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
707
- msgstr "Wähle \"ja\" wenn du das AJAX-(JavaScript)-Formular verwenden möchtest."
708
 
709
  #: mailchimp-for-wordpress/includes/views/form-settings.php:174
710
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
@@ -716,7 +728,7 @@ msgstr "Verberge das Formular nach der Registrierung?"
716
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
717
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
718
  msgid "Select \"yes\" to hide the form fields after a successful sign-up."
719
- msgstr "Wähle \"ja\" wenn du die Formular-Felder nach einer erfolgreichen Registrierung ausblenden möchtest."
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:188
722
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
@@ -730,162 +742,231 @@ msgstr "Beispiel: %s"
730
 
731
  #: mailchimp-for-wordpress/includes/views/form-settings.php:191
732
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
733
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
734
  msgid ""
735
- "Leave empty for no redirect. Otherwise, use complete (absolute) URLs, "
736
- "including <code>http://</code>."
737
- msgstr "Für eine Weiterleitung bitte die kompletten (absoluten) URLs angeben, inklusive <code>http://</code>, ansonsten leer lassen."
738
 
739
  #: mailchimp-for-wordpress/includes/views/form-settings.php:195
740
- msgid "Success message"
741
- msgstr "Erfolgsnachricht"
 
742
 
743
- #: mailchimp-for-wordpress/includes/views/form-settings.php:199
744
- msgid "Invalid email address message"
745
- msgstr "Ungültige E-Mail-Adresse-Nachricht"
 
 
 
 
746
 
747
- #: mailchimp-for-wordpress/includes/views/form-settings.php:203
748
- msgid "Required field missing message"
749
- msgstr "\"Erforderliches Feld\"-Meldung"
 
 
750
 
751
- #: mailchimp-for-wordpress/includes/views/form-settings.php:207
752
- msgid "Already subscribed message"
753
- msgstr "\"Bereits abonniert\"-Meldung"
 
 
 
 
 
 
 
 
754
 
755
  #: mailchimp-for-wordpress/includes/views/form-settings.php:212
756
- msgid "Invalid CAPTCHA message"
757
- msgstr "Ungültiges CAPTCHA"
 
 
 
 
758
 
759
- #: mailchimp-for-wordpress/includes/views/form-settings.php:217
760
- msgid "General error message"
761
- msgstr "Allgemeine Fehlermeldung"
 
 
 
 
 
 
 
 
 
 
762
 
763
- #: mailchimp-for-wordpress/includes/views/form-settings.php:223
764
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:181
765
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
766
- msgid "HTML tags like %s are allowed in the message fields."
767
- msgstr "HTML-Tags wie %s sind in den Nachrichten-Feldern erlaubt."
768
 
769
- #: mailchimp-for-wordpress/includes/views/form-settings.php:237
770
- msgid "Building your sign-up form"
771
- msgstr "Stelle dein Formular zusammen"
 
772
 
773
- #: mailchimp-for-wordpress/includes/views/form-settings.php:238
774
- msgid ""
775
- "At a minimum, your form should include just an %s field and a submit button."
776
- msgstr "Dein Formular sollte mindestens ein %s Feld und eine Bestätigungs-Schaltfläche enthalten."
 
 
 
 
 
 
 
777
 
778
  #: mailchimp-for-wordpress/includes/views/form-settings.php:239
 
 
779
  msgid ""
780
- "Add more form fields if your selected lists require more fields. Field names"
781
- " should match the field tags of the selected lists. Use the \"Add a new "
782
- "field\" tool to have the HTML generated for you."
783
- msgstr "Füge weitere Formularfelder hinzu falls die ausgewählte Liste mehr Felder benötigt. Feldnamen sollten mit den \"field tags\" der ausgewählten Listen übereinstimmen. Benutze das \"Neues Feld anlegen\"-Werkzeug um das HTML dafür zu generieren."
784
 
785
- #: mailchimp-for-wordpress/includes/views/form-settings.php:241
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
786
  msgid "Form Styling"
787
- msgstr "Formular-Styling"
788
 
789
- #: mailchimp-for-wordpress/includes/views/form-settings.php:242
790
  msgid "Alter the visual appearance of the form by applying CSS rules to %s."
791
  msgstr "Ändere das Aussehen des Formulars indem CSS-Regeln auf %s angewendet werden."
792
 
793
- #: mailchimp-for-wordpress/includes/views/form-settings.php:243
794
  msgid ""
795
  "You can add the CSS rules to your theme stylesheet using the <a "
796
- "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
797
- " plugin like %s"
798
- msgstr "Du kannst die CSS-Regeln zu deinem Theme hinzufügen mit dem <a href=\"%s\">Theme Editor</a> oder indem du %s über FTP editierst. Alternativ kannst du auch ein Plugin wie %s verwenden."
799
 
800
- #: mailchimp-for-wordpress/includes/views/form-settings.php:244
801
  msgid ""
802
  "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
803
  "selectors you can use to target the different form elements."
804
- msgstr "Die <a href=\"%s\" target=\"_blank\">Plugin-FAQ</a> zählt die verschiedenen CSS-Selektoren auf, mit denen die die verschiedenen Formularelemente ansteuern kannst."
805
 
806
- #: mailchimp-for-wordpress/includes/views/form-settings.php:245
807
  msgid ""
808
- "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
809
- "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
810
- "lets you customize form styles without writing any code."
811
- msgstr "Falls du einen einfacheren Weg brauchst um deine Formulare zu gestalten, <a href=\"%s\">wechsle zu MailChimp für WordPress Pro</a>. Dieser kommt mit einem \"Styles Builder\", mit dem du deine Formulare individuell gestalten kannst, ohne Code zu schreiben."
812
 
813
- #: mailchimp-for-wordpress/includes/views/form-settings.php:247
814
- msgid "Form variables"
815
- msgstr "Formular-Variablen"
 
816
 
817
- #: mailchimp-for-wordpress/includes/views/form-settings.php:248
818
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:427
819
- msgid "Use the following variables to add some dynamic content to your form."
820
- msgstr "Benutze die folgenden Variablen um zusätzlichen Text zu deinem Formular hinzuzufügen."
 
 
821
 
822
- #: mailchimp-for-wordpress/includes/views/form-settings.php:255
823
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
824
  msgid "Replaced with the visitor's email (if set in URL or cookie)."
825
- msgstr "Ersetzt mit der E-Mail-Adresse des Besuchers (falls in der URL oder dem Cookie gesetzt),"
826
 
827
- #: mailchimp-for-wordpress/includes/views/form-settings.php:259
828
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
829
  msgid "Replaced with the form response (error or success messages)."
830
  msgstr "Ersetzt mit der Formular-Antwort (Fehler- oder Erfolgsmeldungen)."
831
 
832
- #: mailchimp-for-wordpress/includes/views/form-settings.php:264
833
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
834
  msgid "Replaced with a captcha field."
835
  msgstr "Ersetzt durch ein Captcha-Feld."
836
 
837
- #: mailchimp-for-wordpress/includes/views/form-settings.php:269
838
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
839
  msgid "Replaced with the number of subscribers on the selected list(s)"
840
- msgstr "Ersetzt mit der Anzahl-Nummer von Abonnenten der gewählten Liste(n)"
841
 
842
- #: mailchimp-for-wordpress/includes/views/form-settings.php:273
843
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
844
  msgid "Replaced with the current site language, eg: %s"
845
  msgstr "Ersetzt mit der derzeitig gesetzten Sprache, z.B. %s"
846
 
847
- #: mailchimp-for-wordpress/includes/views/form-settings.php:277
848
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
849
  msgid "Replaced with the visitor's IP address"
850
- msgstr "Ersetzt mit der Besucher-IP-Adresse"
851
 
852
- #: mailchimp-for-wordpress/includes/views/form-settings.php:281
853
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
854
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
855
- msgstr "Ersetzt mit dem aktuellen Datum (yyyy/mm/dd eg: %s)"
856
 
857
- #: mailchimp-for-wordpress/includes/views/form-settings.php:285
858
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
859
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
860
- msgstr "Ersetzt mit der aktuellen Uhrzeit (hh:mm:ss eg: %s)"
861
 
862
- #: mailchimp-for-wordpress/includes/views/form-settings.php:289
863
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
864
  msgid ""
865
  "Replaced with the logged in user's email (or nothing, if there is no logged "
866
  "in user)"
867
- msgstr "Ersetzt mit der E-Mail-Adresse des angemeldeten Benutzers (oder nicht, wenn der Benutzer nicht angemeldet ist)"
868
 
869
- #: mailchimp-for-wordpress/includes/views/form-settings.php:293
870
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
871
  msgid "First name of the current user"
872
  msgstr "Den Vornamen des aktuellen Benutzers anzeigen"
873
 
874
- #: mailchimp-for-wordpress/includes/views/form-settings.php:297
875
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
876
  msgid "Last name of the current user"
877
  msgstr "Den Nachnamen des aktuellen Benutzers anzeigen"
878
 
879
- #: mailchimp-for-wordpress/includes/views/form-settings.php:301
880
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
881
  msgid "Current user ID"
882
- msgstr "Aktuelle Benutzer-ID"
883
 
884
- #: mailchimp-for-wordpress/includes/views/form-settings.php:305
885
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
886
  msgid "Current URL"
887
  msgstr "Aktuelle URL"
888
 
 
 
 
 
 
889
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
890
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
891
  msgid "Add a new field"
@@ -898,63 +979,66 @@ msgstr "Verwende das untenstehende Werkzeug um das HTML für deine Formularfelde
898
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
899
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
900
  msgid "Select MailChimp field.."
901
- msgstr "Wähle MailChimp-Feld.."
902
 
903
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
904
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
905
  msgid "Submit Button"
906
- msgstr "Senden-Schaltlfläche"
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
 
 
 
 
909
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
910
- msgid "Lists Choice"
911
- msgstr "Listen Auswahl"
912
 
913
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
914
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:48
915
  msgid "Label"
916
  msgstr "Beschreibung"
917
 
918
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
919
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:53
920
  msgid "Placeholder"
921
  msgstr "Platzhalter"
922
 
923
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:43
924
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:63
925
  msgid "Labels"
926
  msgstr "Beschriftungen"
927
 
928
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:43
929
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:63
930
  msgid "(leave empty to hide)"
931
- msgstr "(leer lassen zum Ausblenden)"
932
 
933
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:48
934
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:68
935
  msgid "Wrap in paragraph %s tags?"
936
- msgstr "In Absatz-Tags %s einschließen?"
937
 
938
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:53
939
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:72
940
  msgid "Required field?"
941
- msgstr "Pflichtfeld?"
942
 
943
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:57
944
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:76
945
  msgid "Add to form"
946
  msgstr "Zum Formular hinzufügen"
947
 
948
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:61
949
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:80
950
  msgid "Generated HTML"
951
  msgstr "Generiertes HTML"
952
 
953
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:68
954
  msgid "Select at least one list first."
955
  msgstr "Als erstes eine Liste auswählen."
956
 
957
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
958
  msgid ""
959
  "MailChimp for WordPress is in need of translations. Is the plugin not "
960
  "translated in your language or do you spot errors with the current "
@@ -962,31 +1046,32 @@ msgid ""
962
  "translation project and click \"help translate\"</a>."
963
  msgstr "MailChimp für WordPress braucht mehr Übersetzungen. Ist das Plugin in deiner Sprache nicht verfügbar oder hast du einen Fehler in der jetzigen Übersetzung entdeckt? Helfen ist ganz einfach! Gehe zum <a href=\"%s\">Übersetzungsprojekt und klicke auf \"Übersetzen\"</a>."
964
 
965
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
966
  msgid ""
967
- "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
968
- "now</a> for an even better plugin, you will love it."
969
- msgstr "Magst du dieses Plugin? <a href=\"%s\">Wechsle jetzt zu MailChimp für WordPress Pro</a> für ein noch besseres Plugin, du wirst es lieben."
970
 
971
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
972
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
973
  msgid ""
974
  "This plugin is not developed by or affiliated with MailChimp in any way."
975
  msgstr "Dieses Plugin ist weder von MailChimp entwickelt noch sonst irgendwie daran angegliedert."
976
 
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
978
- msgid "Looking for support?"
979
- msgstr "Benötigen Sie Unterstützung?"
980
 
981
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
982
  msgid ""
983
- "Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
984
- "use the <a href=\"%s\">support forums</a> on WordPress.org."
985
- msgstr "Schau dir die <a href=\"%s\">häufig gestellten Fragen</a> an oder benutze die <a href=\"%s\">Support-Foren</a> auf WordPress.org."
 
986
 
987
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
988
- msgid "Show a token of your appreciation"
989
- msgstr "Zeige deine Wertschätzung"
990
 
991
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
992
  msgid "Leave a %s plugin review on WordPress.org"
@@ -994,7 +1079,7 @@ msgstr "Schreib ein %s Plugin Review auf WordPress.org"
994
 
995
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
996
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
997
- msgstr "Ich verwende MailChimp für WordPress by @DannyvanKooten - es ist großartig!"
998
 
999
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1000
  msgid "Tweet about MailChimp for WordPress"
@@ -1006,380 +1091,405 @@ msgid ""
1006
  "page</a>."
1007
  msgstr "Mach einen Review von diesem Plugin auf deinem Blog und linke zur <a href=\"%s\">Plugin-Seite</a>."
1008
 
 
 
 
 
1009
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
1010
  msgid "Vote \"works\" on the WordPress.org plugin page"
1011
- msgstr "Stimme für \"works\" auf der WordPress.org-Plugin-Seite"
1012
 
1013
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:24
1014
- msgid "About the developer"
1015
- msgstr "Über den Entwickler"
 
1016
 
1017
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
1018
- msgid ""
1019
- "This plugin has an even better premium version, I am sure you will love it."
1020
- msgstr "Dieses Plugin hat eine noch bessere Premium-Version. Ich bin mir sicher, du wirst sie lieben!"
1021
 
1022
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
1023
- msgid ""
1024
- "Pro features include better and multiple forms, advanced and easy form "
1025
- "styling, more default themes, detailed statistics and priority support."
1026
- msgstr "Pro-Features sind unter anderem bessere und mehrere Formulare, erweitertes und einfaches Formular-Styling, mehr Standard-Themes, detaillierte Statistiken und Prioritäts-Support."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1027
 
1028
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
 
 
 
 
1029
  msgid "Upgrade Now"
1030
- msgstr "Jetzt upgraden"
 
 
 
 
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:206
1033
  msgid "Documentation"
1034
  msgstr "Dokumentation"
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:254
1037
  msgid "Save Form"
1038
- msgstr "Formular speichern"
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:258
1041
  msgid "Update Form"
1042
- msgstr "Formular aktualisieren"
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:314
1045
  msgid "Back to general form settings"
1046
- msgstr "Zurück zu den Standard-Formular-Einstellungen"
1047
 
1048
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:316
1049
  msgid "Form updated."
1050
  msgstr "Formular aktualisiert."
1051
 
1052
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:317
1053
  msgid "Form saved."
1054
  msgstr "Formular gespeichert."
1055
 
1056
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:386
1057
  msgid "Optional Settings"
1058
  msgstr "Optionale Einstellungen"
1059
 
1060
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:387
1061
- msgid "Form Variables"
1062
- msgstr "Formular-Variablen"
1063
-
1064
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:531
1065
  msgid "MailChimp & Plugin License Settings"
1066
- msgstr "MailChimp- & Plugin-Lizenz-Einstellungen"
1067
 
1068
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:532
1069
  msgid "MailChimp & License"
1070
  msgstr "MailChimp & Lizenz"
1071
 
1072
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:548
1073
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:549
1074
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1075
  msgid "Reports"
1076
  msgstr "Berichte"
1077
 
1078
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:732
1079
  msgid ""
1080
  "Please make sure the plugin is connected to MailChimp. <a "
1081
  "href=\"%s\">Provide a valid API key.</a>"
1082
- msgstr "Bitte stelle sicher, dass das Plugin mit MailChimp verbunden ist. <a href=\"%s\">Gültigen API-Schlüssel eingeben.</a>"
1083
-
1084
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:834
1085
- msgid "End date can't be before the start date"
1086
- msgstr "Enddatum kann nicht vor dem Startdatum sein"
1087
 
1088
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:866
1089
  msgid ""
1090
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1091
  "page."
1092
  msgstr "Du hast das Logging mit dem %s Filter abgeschaltet. Aktiviere es wieder um die Reports-Seite benutzen zu können."
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:882
1095
  msgid ""
1096
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1097
  "settings you set in the Lite version, you can safely <a "
1098
  "href=\"%s\">deactivate it now</a>."
1099
  msgstr "<strong>Willkommen bei MailChimp für WordPress Pro!</strong> Wir haben die Einstellungen der Lite-Version übernommen, so dass du diese jetzt sicher <a href=\"%s\">deaktivieren kannst</a>."
1100
 
1101
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:319
 
 
 
 
1102
  msgid ""
1103
  "Couldn't create the stylesheet. Manually add the generated CSS to your theme"
1104
- " stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
1105
- msgstr "Konnte das Stylesheet nicht erzeugen. Füge das erstellte CSS zu deinem Theme Stylesheet, mit dem %sTheme Editor%s oder nutze FTP und ändere <em>%s</em>."
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:320
1108
  msgid "%sShow generated CSS%s"
1109
  msgstr "%sZeige das generierte CSS%s"
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1112
- msgid ""
1113
- "To apply these styles on your website, select \"load custom form styles\" in"
1114
- " the %sform settings%s"
1115
- msgstr "Um die Formatierungen anzuwenden, wähle \"Lade benutzerdefinierte Formular-Stile\" in den %sFormular Einstellungen%s"
1116
-
1117
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1118
  msgid "The %sCSS Stylesheet%s has been created."
1119
  msgstr "Das %sCSS Stylesheet%s wurde erstellt."
1120
 
1121
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1122
  msgid "I know. Don't bug me."
1123
- msgstr "Ich weiß. Lass mich in Ruhe."
1124
 
1125
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:161
1126
  msgid ""
1127
  "<b>Warning!</b> You're blocking external requests which means you won't be "
1128
  "able to get %s updates. Please add %s to %s."
1129
  msgstr "<b>Achtung!</b> Du blockierst externe Anfragen, deshalb bekommst du keine %s Updates. Bitte mache %s zu %s."
1130
 
1131
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:203
1132
  msgid "Your %s license has been activated. You have an unlimited license. "
1133
  msgstr "Deine %s Lizenz wurde aktiviert. Du hast eine unlimitierte Lizenz."
1134
 
1135
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:205
1136
  msgid "Your %s license has been activated. You have used %d/%d activations. "
1137
  msgstr "Deine %s Lizenz wurde aktiviert. Du hast %d/%d Aktivierungen genutzt."
1138
 
1139
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:210
1140
  msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
1141
- msgstr "<a href=\"%s\"> Weißt du wie du deine Lizenz upgraden kannst?</a>"
1142
 
1143
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:214
1144
  msgid ""
1145
  "<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
1146
  " it?</a>"
1147
  msgstr "<a href=\"%s\">Deine Lizenz verfällt in %d Tagen, willst du sie verlängern?</a>"
1148
 
1149
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:223
1150
  msgid ""
1151
  "You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
1152
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1153
  msgstr "Du hast dein Aktiviereung-Limit erreicht. Du musst <a href=\"%s\">zurücksetzen</a> oder <a href=\"%s\">deine Lizenz wechseln</a> um es auf dieser Seite zu nutzen."
1154
 
1155
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:227
1156
  msgid ""
1157
  "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1158
  "you want to use it again."
1159
  msgstr "Deine Lizenz ist abgelaufen. Du musst deine <a href=\"%s\">Lizenz erneuern</a>, wenn du es wieder benutzen möchtest."
1160
 
1161
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:230
1162
  msgid "Failed to activate your license, your license key seems to be invalid."
1163
  msgstr "Die Lizenz konnte nicht aktiviert werden, die Lizenz scheint ungültig zu sein."
1164
 
1165
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:255
1166
  msgid "Your %s license has been deactivated."
1167
  msgstr "Dein %s wurde deaktiviert."
1168
 
1169
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:260
1170
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:66
1171
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:75
1172
  msgid ""
1173
  "Your plugin license has expired. You will no longer have access to plugin "
1174
  "updates unless you <a href=\"%s\">renew your license</a>."
1175
  msgstr "Deine Lizenz ist abgelaufen. Du hast somit keinen Zugriff mehr auf Updates bis du deine <a href=\"%s\">Lizenz erneuert</a> hast."
1176
 
1177
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:262
1178
  msgid "Failed to deactivate your %s license."
1179
  msgstr "Die %s Lizenz konnte nicht deaktiviert werden."
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:300
1182
  msgid "Request error: \"%s\""
1183
  msgstr "Fehler: \"%s\""
1184
 
1185
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:459
1186
  msgid "%s: License Settings"
1187
- msgstr "%s: Lizenz-Einstellungen"
1188
 
1189
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-plugin-license-manager.php:67
1190
  msgid ""
1191
  "%s is network activated, please contact your site administrator to manage "
1192
  "the license."
1193
- msgstr "%s ist Netzwerk aktiviert, bitte kontaktiere den Netzwerk-Administrator um die Lizenz zu verwalten."
1194
 
1195
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-update-manager.php:64
1196
  msgid ""
1197
  "%s failed to check for updates because of the following error: <em>%s</em>"
1198
  msgstr "%s konnte nicht auf Updates prüfen, wegen dem folgenden Fehler: <em>%s</em>"
1199
 
1200
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-update-manager.php:126
1201
  msgid ""
1202
  "This site has not been activated properly on mc4wp.com and thus cannot check"
1203
  " for future updates. Please activate your site with a valid license key."
1204
- msgstr "Diese Seite wurde nicht korrekt auf mc4wp.com aktiviert und kann deshalb nicht auf Updates überprüft werden. Bitte aktiviere deine Seite mit einem gültigen Lizenz-Schlüssel."
1205
 
1206
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:23
1207
  msgid "License status"
1208
- msgstr "Lizenzstatus"
1209
 
1210
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
1211
  msgid "ACTIVE"
1212
  msgstr "Aktiv"
1213
 
1214
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
1215
  msgid "you are receiving updates"
1216
- msgstr "Du erhältst Updates"
1217
 
1218
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1219
  msgid "EXPIRED"
1220
  msgstr "ABGELAUFEN"
1221
 
1222
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1223
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1224
  msgid "you are <strong>not</strong> receiving updates."
1225
  msgstr "Du erhältst <strong>keine</strong> Updates."
1226
 
1227
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1228
  msgid "INACTIVE"
1229
  msgstr "Nicht Aktiv"
1230
 
1231
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1232
  msgid "Toggle license status"
1233
- msgstr "Lizenzstatus umschalten"
1234
 
1235
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1236
  msgid "Deactivate License"
1237
  msgstr "Deaktiviere Lizenz"
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1240
  msgid ""
1241
  "(deactivate your license so you can activate it on another WordPress site)"
1242
- msgstr "(deaktiviere deine Lizenz um sie auf einer anderen Wordpress-Site zu nutzen)"
1243
 
1244
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1245
  msgid "Activate License"
1246
  msgstr "Aktiviere Lizenz"
1247
 
1248
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1249
  msgid "Please enter a license key in the field below first."
1250
- msgstr "Bitte trage vorher einen Lizenz-Schlüssel in das Feld darunter ein."
1251
 
1252
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1253
  msgid "License Key"
1254
  msgstr "Lizenz Schlüssel"
1255
 
1256
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1257
  msgid "Paste your license key here, as found in the email receipt."
1258
- msgstr "Füge hier deinen Lizenz-Schlüssel, den du per E-Mail erhalten hast, ein."
1259
 
1260
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:79
1261
  msgid "Your %s license will expire on %s."
1262
- msgstr "Deine %s Lizenz wird am %s ablaufen."
1263
 
1264
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:83
1265
  msgid "%sRenew your license now%s."
1266
  msgstr "%sErneuere deine Lizenz jetzt%s."
1267
 
1268
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:261
1269
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
1270
- msgstr "<strong>Fehler:</strong> Bitte eine Formular-ID angeben. Beispiel: %s."
1271
-
1272
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:275
1273
- msgid ""
1274
- "<strong>Error:</strong> Sign-up form not found. Please check if you used the"
1275
- " correct form ID."
1276
- msgstr "<strong>Fehler:</strong> Registrierungsformular nicht gefunden . Bitte überprüfe ob die richtige Formular-ID verwendet wurde."
1277
-
1278
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:647
1279
- msgid "New MailChimp Sign-Up"
1280
- msgstr "Neue MailChimp-Registrierung"
1281
-
1282
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:655
1283
- msgid "New Sign-Up"
1284
- msgstr "Neue Registrierung"
1285
-
1286
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:656
1287
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1288
- msgstr "<strong>%s</strong> hat sich um %s auf %s registriert und hat dafür das Formular \"%s\" genutzt."
1289
-
1290
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:661
1291
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:77
1292
- msgid "List"
1293
- msgstr "Liste"
1294
-
1295
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:701
1296
- msgid "Other fields"
1297
- msgstr "Andere Felder"
1298
-
1299
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:718
1300
- msgid ""
1301
- "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1302
- "be added to the selected MailChimp lists until they confirm their email "
1303
- "address."
1304
- msgstr "Beachte, dass du das sogenannte \"Double-Opt-in\" für das Formular \"%s\" aktiviert hast. Der Benutzer wird erst der ausgewählten Liste hinzugefügt, wenn er seine E-Mail-Adresse bestätigt hat."
1305
-
1306
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:720
1307
- msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1308
- msgstr "Diese E-Mail wurde automatisch vom MailChimp für WordPress-Plugin versendet."
1309
-
1310
- #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1311
- msgid "IP Address"
1312
- msgstr "IP Adresse"
1313
-
1314
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1315
- msgid "MailChimp for WP Form"
1316
- msgstr "MailChimp for WP-Formular"
1317
-
1318
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:21
1319
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
1320
- msgstr "Zeige eines deiner MailChimp für WordPress-Registrierungsformulare an"
1321
-
1322
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:43
1323
- msgid ""
1324
- "Please select the sign-up form you'd like to show here in the <a "
1325
- "href=\"%s\">widget settings</a>."
1326
- msgstr "Bitte wähle aus, welches Registrierungsformular du hier in den <a href=\"%s\">Widget-Einstellungen</a> anzeigen möchtest."
1327
-
1328
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:86
1329
- msgid "Form:"
1330
- msgstr "Formular:"
1331
-
1332
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:88
1333
- msgid "Select the form to show"
1334
- msgstr "Wähle ein Formular aus"
1335
-
1336
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:96
1337
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1338
- msgstr "Du hast keine Registrierungsformulare. <a href=\"%s\">Erstelle jetzt eines.</a>"
1339
-
1340
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
1341
- msgid ""
1342
- "Thank you, your sign-up request was successful! Please check your email "
1343
- "inbox to confirm."
1344
- msgstr "Danke, deine Anfrage war erfolgreich! Bitte prüfe dein E-Mail-Konto für die Bestätigung."
1345
-
1346
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:43
1347
  msgid "ID"
1348
  msgstr "ID"
1349
 
1350
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:44
1351
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:426
1352
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:462
 
1353
  msgid "Form"
1354
  msgstr "Formulare"
1355
 
1356
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:45
1357
  msgid "Shortcode"
1358
  msgstr "Shortcode"
1359
 
1360
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:46
1361
  msgid "List(s)"
1362
  msgstr "Liste(n)"
1363
 
1364
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:47
1365
  msgid "Last edited"
1366
  msgstr "Zuletzt bearbeitet"
1367
 
1368
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:98
1369
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:102
1370
  msgid "Edit Form"
1371
  msgstr "Formular editieren"
1372
 
1373
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:99
1374
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:253
1375
  msgid "Delete"
1376
  msgstr "Löschen"
1377
 
1378
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:131
1379
  msgid "No MailChimp list(s) selected yet."
1380
- msgstr "Noch keine MailChimp-Liste(n) ausgewählt."
1381
 
1382
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:141
1383
  msgid "You have not created any sign-up forms yet. Time to do so!"
1384
  msgstr "Du hast noch kein Registrierungs-Formular erstellt. Es ist nun Zeit dafür!"
1385
 
@@ -1390,7 +1500,7 @@ msgstr "Log"
1390
 
1391
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
1392
  msgid "Log Items"
1393
- msgstr "Log-Einträge"
1394
 
1395
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
1396
  msgid "Email"
@@ -1402,7 +1512,6 @@ msgstr "Daten"
1402
 
1403
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
1404
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
1405
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
1406
  msgid "Success"
1407
  msgstr "Erfolgreich"
1408
 
@@ -1422,63 +1531,62 @@ msgstr "Abonniert"
1422
  msgid "Log items deleted."
1423
  msgstr "Logeintrag gelöscht."
1424
 
1425
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:297
 
 
 
 
1426
  msgid "Top Bar"
1427
  msgstr "Top Bar"
1428
 
1429
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:305
1430
  msgid "MultiSite registration"
1431
  msgstr "MultiSite-Registrierung"
1432
 
1433
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:318
1434
  msgid "Contact Form 7"
1435
  msgstr "Contact Form 7"
1436
 
1437
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:322
1438
  msgid "bbPress: New Topic"
1439
  msgstr "bbPress: Neues Thema"
1440
 
1441
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:326
1442
  msgid "bbPress: New Reply"
1443
  msgstr "bbPress: Neue Antwort"
1444
 
1445
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:332
1446
  msgid "Other Form"
1447
  msgstr "Anderes Formular"
1448
 
1449
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:398
1450
  msgid "No subscribe requests found."
1451
- msgstr "Keine Anmelde-Anfragen gefunden."
1452
 
1453
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:420
1454
  msgid "All"
1455
  msgstr "Alle"
1456
 
1457
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:432
1458
  msgid "Checkbox"
1459
  msgstr "Checkbox"
1460
 
1461
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:475
1462
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:478
1463
- msgid "Registration"
1464
- msgstr "Registrierung"
1465
-
1466
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:489
1467
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:503
1468
  msgid "Order"
1469
  msgstr "Sortierung"
1470
 
1471
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:492
1472
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:506
1473
  msgid "Checkout"
1474
  msgstr "Zur Kasse"
1475
 
1476
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:518
1477
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:525
1478
  msgid "Comment"
1479
  msgstr "Kommentar"
1480
 
1481
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:518
1482
  msgid "deleted"
1483
  msgstr "gelöscht"
1484
 
@@ -1500,7 +1608,7 @@ msgstr "Übernehmen"
1500
 
1501
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
1502
  msgid "Send an email copy of the form data?"
1503
- msgstr "Sende eine E-Mail-Kopie der Formulardaten?"
1504
 
1505
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
1506
  msgid ""
@@ -1510,38 +1618,25 @@ msgstr "Wähle \"ja\" wenn du eine E-Mail mit den Formulardaten, für jedes Abon
1510
 
1511
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
1512
  msgid "Send the copy to this email:"
1513
- msgstr "Sende die Kopie an diese E-Mail-Adresse:"
1514
 
1515
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
1516
  msgid "Messages"
1517
  msgstr "Nachrichten"
1518
 
1519
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:157
1520
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:145
1521
- msgid "Invalid email address"
1522
- msgstr "Ungültige E-Mail-Adresse"
1523
-
1524
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:161
1525
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:149
1526
- msgid "Required field missing"
1527
- msgstr "Erforderliches Feld fehlt"
1528
-
1529
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:165
1530
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:153
1531
- msgid "Already subscribed"
1532
- msgstr "Bereits abonniert"
1533
-
1534
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
1535
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:159
1536
- msgid "Invalid CAPTCHA"
1537
- msgstr "Ungültiges CAPTCHA"
1538
-
1539
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:175
1540
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
1541
  msgid "Other errors"
1542
  msgstr "Andere Fehler"
1543
 
1544
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:89
 
 
 
 
 
 
 
 
1545
  msgid "Form usage"
1546
  msgstr "Formular-Nutzung"
1547
 
@@ -1555,17 +1650,17 @@ msgstr "Wähle \"Ja\" wenn du die bisherigen Abonnenten mit den gesendeten Daten
1555
  msgid ""
1556
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1557
  "forms."
1558
- msgstr "Benutze %s in deinem Contact-Form-7-Markup um ein Abonnier-Kontrollkästchen zu deinen CF7-Formularen hinzuzufügen."
1559
 
1560
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
1561
  msgid "Custom label texts"
1562
- msgstr "Benutzerdefinierte Beschriftungstexte"
1563
 
1564
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
1565
  msgid ""
1566
  "Override the default checkbox label text for any given checkbox using the "
1567
  "fields below."
1568
- msgstr "Überschreibe die Standard-Kontrollkästchen-Beschriftung für alle Kontrollkästchen, mit den nachfolgenden Feldern."
1569
 
1570
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
1571
  msgid "Forms & Settings"
@@ -1577,53 +1672,266 @@ msgstr "CSS Styles Builder"
1577
 
1578
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
1579
  msgid "License & API Settings"
1580
- msgstr "Lizenz- und API-Einstellungen"
1581
 
1582
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
1583
  msgid "No lists were found in your MailChimp account."
1584
- msgstr "Es wurden keine Listen in deinem MailChimp-Konto gefunden."
1585
 
1586
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
1587
- msgid "Statistics"
1588
- msgstr "Statistiken"
1589
-
1590
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:9
1591
  msgid ""
1592
  "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1593
- "email me directly at <a href=\"%s\">support@mc4wp.com</a>."
1594
- msgstr "Du benötigst Hilfe? Schaue dir die <a href=\"%s\">Dokumentation des Plugins</a> an oder schreibe mir direkt eine E-Mail an <a href=\"%s\">support@mc4wp.com</a>."
 
 
 
 
 
1595
 
1596
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:10
1597
  msgid "Use the fields below to create custom styling rules for your forms."
1598
  msgstr "Benutze diese Felder, um benutzerdefinierte Stilregeln für deine Formulare zu definieren."
1599
 
1600
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1601
  msgid "Select form to build styles for:"
1602
  msgstr "Wähle das Formular für das du Styles erstellen willst:"
1603
 
1604
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:26
 
1605
  msgid "Create at least one form first."
1606
  msgstr "Erstelle zuerst mindestens ein Formular."
1607
 
1608
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
1609
  msgid "You need to have JavaScript enabled to see a preview of your form."
1610
  msgstr "Du musst JavaScript aktivieren, um eine Vorschau zu erhalten!"
1611
 
1612
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223