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()
andmc4wp_form_get_response_html()
functions.
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 2.3.8 |
Comparing to | |
See all releases |
Code changes from version 2.3.7 to 2.3.8
- assets/css/admin.css +33 -3
- assets/css/admin.min.css +1 -1
- assets/js/form-request.js +2 -4
- assets/js/form-request.min.js +1 -1
- includes/class-form-manager.php +7 -52
- includes/class-form.php +2 -2
- includes/class-mailchimp.php +8 -2
- includes/class-request.php +2 -2
- includes/class-subscribe-request.php +7 -2
- includes/functions/general.php +36 -2
- includes/integrations/class-edd.php +1 -1
- includes/integrations/class-integration.php +1 -1
- includes/views/api-settings.php +75 -57
- includes/views/parts/admin-upgrade-to-pro.php +29 -2
- languages/mailchimp-for-wp-cs_CZ.mo +0 -0
- languages/mailchimp-for-wp-cs_CZ.po +1 -1
- languages/mailchimp-for-wp-de_CH.mo +0 -0
- languages/mailchimp-for-wp-de_CH.po +1 -1
- languages/mailchimp-for-wp-de_DE.mo +0 -0
- languages/mailchimp-for-wp-de_DE.po +882 -568
- languages/mailchimp-for-wp-el_GR.mo +0 -0
- languages/mailchimp-for-wp-el_GR.po +1298 -830
- languages/mailchimp-for-wp-es_ES.mo +0 -0
- languages/mailchimp-for-wp-es_ES.po +1 -1
- languages/mailchimp-for-wp-es_PR.mo +0 -0
- languages/mailchimp-for-wp-es_PR.po +1 -1
- languages/mailchimp-for-wp-fa_IR.mo +0 -0
- languages/mailchimp-for-wp-fa_IR.po +1 -1
- languages/mailchimp-for-wp-fi_FI.mo +0 -0
- languages/mailchimp-for-wp-fi_FI.po +1 -1
- languages/mailchimp-for-wp-fr_FR.mo +0 -0
- languages/mailchimp-for-wp-fr_FR.po +1 -1
- languages/mailchimp-for-wp-hu_HU.mo +0 -0
- languages/mailchimp-for-wp-hu_HU.po +1 -1
- languages/mailchimp-for-wp-id_ID.mo +0 -0
- languages/mailchimp-for-wp-id_ID.po +1 -1
- languages/mailchimp-for-wp-it_IT.mo +0 -0
- languages/mailchimp-for-wp-it_IT.po +1 -1
- languages/mailchimp-for-wp-nl_NL.mo +0 -0
- languages/mailchimp-for-wp-nl_NL.po +1 -1
- languages/mailchimp-for-wp-pt_BR.mo +0 -0
- languages/mailchimp-for-wp-pt_BR.po +37 -36
- languages/mailchimp-for-wp-pt_PT.mo +0 -0
- languages/mailchimp-for-wp-pt_PT.po +1 -1
- languages/mailchimp-for-wp-ru_RU.mo +0 -0
- languages/mailchimp-for-wp-ru_RU.po +29 -29
- languages/mailchimp-for-wp-sk_SK.mo +0 -0
- languages/mailchimp-for-wp-sk_SK.po +1 -1
- languages/mailchimp-for-wp-sv_SE.mo +0 -0
- languages/mailchimp-for-wp-sv_SE.po +1 -1
- languages/mailchimp-for-wp-tr_TR.mo +0 -0
- languages/mailchimp-for-wp-tr_TR.po +59 -58
- languages/mailchimp-for-wp-vi_VN.mo +0 -0
- languages/mailchimp-for-wp-vi_VN.po +1 -1
- mailchimp-for-wp.php +7 -6
- readme.txt +54 -190
assets/css/admin.css
CHANGED
@@ -19,10 +19,14 @@
|
|
19 |
vertical-align: top !important;
|
20 |
}
|
21 |
|
22 |
-
|
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:
|
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}
|
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 |
-
|
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
|
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 |
-
|
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.
|
238 |
-
b.addEventListener
|
239 |
-
|
240 |
-
|
|
|
|
|
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"
|
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(
|
20 |
$cached_lists = get_transient( 'mc4wp_mailchimp_lists_fallback' );
|
21 |
}
|
22 |
|
23 |
-
|
|
|
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(
|
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 (
|
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 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
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\"
|
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( '
|
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 .= '<
|
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 |
-
<
|
59 |
-
|
60 |
-
|
61 |
-
|
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 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
106 |
</tr>
|
107 |
-
<?php
|
108 |
-
}
|
109 |
-
} else { ?>
|
110 |
<tr>
|
111 |
-
<
|
112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
</td>
|
114 |
</tr>
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
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
|
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&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/
|
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/
|
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-
|
13 |
-
"PO-Revision-Date: 2015-
|
14 |
-
"Last-Translator:
|
15 |
-
"Language-Team: German (Germany) (http://www.transifex.com/
|
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:
|
32 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Einstellungen"
|
35 |
|
36 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
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:
|
42 |
msgid "MailChimp API Settings"
|
43 |
-
msgstr "MailChimp
|
44 |
|
45 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
46 |
msgid "MailChimp"
|
47 |
msgstr "MailChimp"
|
48 |
|
49 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
50 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
51 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
52 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
53 |
msgid "Checkbox Settings"
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
57 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
58 |
msgid "Checkboxes"
|
59 |
-
msgstr "
|
60 |
|
61 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
62 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
63 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
64 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
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:
|
70 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
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:
|
76 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
77 |
msgid "Upgrade to Pro"
|
78 |
msgstr "Auf Pro upgraden"
|
79 |
|
80 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
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:
|
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:
|
88 |
msgid "(PRO ONLY)"
|
89 |
msgstr "(NUR PRO)"
|
90 |
|
91 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
92 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
93 |
msgid "Button text"
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
97 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
98 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
99 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
100 |
msgid "Initial value"
|
101 |
msgstr "Anfangsangaben"
|
102 |
|
103 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
104 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
105 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
106 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
107 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
108 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
109 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
110 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
111 |
msgid "(optional)"
|
112 |
msgstr "(optional)"
|
113 |
|
114 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
115 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
116 |
msgid "Label for"
|
117 |
msgstr "Beschreibung für"
|
118 |
|
119 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
120 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
121 |
msgid "(or leave empty)"
|
122 |
msgstr "(oder leer lassen)"
|
123 |
|
124 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
125 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
126 |
msgid "Subscribe"
|
127 |
msgstr "abonnieren"
|
128 |
|
129 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
130 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
|
|
|
|
|
|
|
|
|
|
131 |
msgid "Comment form"
|
132 |
msgstr "Kommentarformular"
|
133 |
|
134 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
135 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
136 |
msgid "Registration form"
|
137 |
msgstr "Registrierungsformular"
|
138 |
|
139 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
140 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
141 |
msgid "MultiSite forms"
|
142 |
msgstr "MultiSite-Formular"
|
143 |
|
144 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
145 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
146 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
147 |
msgid "BuddyPress registration"
|
148 |
msgstr "BuddyPress-Formular"
|
149 |
|
150 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
151 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
152 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
153 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
154 |
msgid "%s checkout"
|
155 |
msgstr "%s Checkout"
|
156 |
|
157 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
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:
|
164 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
165 |
msgid "Renewed MailChimp cache."
|
166 |
-
msgstr "MailChimp
|
167 |
|
168 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
169 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
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-
|
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
|
196 |
|
197 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:
|
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:
|
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:
|
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:
|
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:
|
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
|
222 |
|
223 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
224 |
-
#: mailchimp-for-wordpress-pro/includes/
|
|
|
225 |
msgid "Your email address"
|
226 |
-
msgstr "Deine E-Mail
|
227 |
|
228 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
229 |
-
#: mailchimp-for-wordpress-pro/includes/
|
|
|
230 |
msgid "Sign up"
|
231 |
msgstr "Registrieren"
|
232 |
|
233 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
234 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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:
|
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:
|
245 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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:
|
250 |
-
#: mailchimp-for-wordpress-pro/includes/
|
251 |
msgid "Please provide a valid email address."
|
252 |
-
msgstr "Bitte
|
253 |
|
254 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
255 |
-
#: mailchimp-for-wordpress-pro/includes/
|
256 |
msgid "Given email address is already subscribed, thank you!"
|
257 |
-
msgstr "Die angegebene E-Mail
|
258 |
|
259 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
260 |
-
#: mailchimp-for-wordpress-pro/includes/
|
261 |
msgid "Please complete the CAPTCHA."
|
262 |
msgstr "Bitte das CAPTCHA vervollständigen."
|
263 |
|
264 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
265 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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:
|
336 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
337 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
338 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
|
|
|
|
|
|
339 |
msgid "MailChimp for WordPress - Error"
|
340 |
msgstr "MailChimp für WordPress - Fehler"
|
341 |
|
342 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
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
|
347 |
|
348 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
349 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
|
|
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:
|
|
|
354 |
msgid ""
|
355 |
"The MailChimp server returned the following error message as a response to "
|
356 |
"our sign-up request:"
|
357 |
-
msgstr "Der MailChimp
|
358 |
|
359 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
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:
|
364 |
-
#: mailchimp-for-wordpress-pro/includes/class-
|
|
|
365 |
msgid "Email address:"
|
366 |
msgstr "E-Mail-Adresse:"
|
367 |
|
368 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
431 |
|
432 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
433 |
msgid "No lists were found in your MailChimp account"
|
434 |
-
msgstr "In
|
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-
|
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
|
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-
|
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
|
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
|
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-
|
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
|
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 "
|
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
|
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
|
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 "
|
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
|
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 "
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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 "
|
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
|
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:
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
736 |
-
"including <code>http://</code>."
|
737 |
-
msgstr "
|
738 |
|
739 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
740 |
-
|
741 |
-
|
|
|
742 |
|
743 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
744 |
-
|
745 |
-
|
|
|
|
|
|
|
|
|
746 |
|
747 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
748 |
-
|
749 |
-
|
|
|
|
|
750 |
|
751 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
752 |
-
|
753 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
|
755 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:212
|
756 |
-
|
757 |
-
|
|
|
|
|
|
|
|
|
758 |
|
759 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
760 |
-
|
761 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
762 |
|
763 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
764 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:
|
765 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
766 |
-
msgid "
|
767 |
-
msgstr "
|
768 |
|
769 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
770 |
-
|
771 |
-
|
|
|
772 |
|
773 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
774 |
-
|
775 |
-
|
776 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
|
778 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
|
|
|
|
779 |
msgid ""
|
780 |
-
"
|
781 |
-
"
|
782 |
-
"
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
msgid "Form Styling"
|
787 |
-
msgstr "Formular
|
788 |
|
789 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
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:
|
794 |
msgid ""
|
795 |
"You can add the CSS rules to your theme stylesheet using the <a "
|
796 |
-
"href=\"%s\">Theme Editor</a> or by
|
797 |
-
|
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:
|
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
|
805 |
|
806 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
807 |
msgid ""
|
808 |
-
"If you need an easier way to style your forms, <a
|
809 |
-
"MailChimp for WordPress Pro</a
|
810 |
-
"
|
811 |
-
msgstr "
|
812 |
|
813 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
814 |
-
|
815 |
-
|
|
|
816 |
|
817 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
818 |
-
#: mailchimp-for-wordpress-pro/includes/admin
|
819 |
-
msgid "
|
820 |
-
|
|
|
|
|
821 |
|
822 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
823 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
|
|
|
|
|
|
|
|
|
|
824 |
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
825 |
-
msgstr "Ersetzt mit der
|
826 |
|
827 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
828 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
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:
|
833 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
834 |
msgid "Replaced with a captcha field."
|
835 |
msgstr "Ersetzt durch ein Captcha-Feld."
|
836 |
|
837 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
838 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
839 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
840 |
-
msgstr "
|
841 |
|
842 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
843 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
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:
|
848 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
849 |
msgid "Replaced with the visitor's IP address"
|
850 |
-
msgstr "
|
851 |
|
852 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
853 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
854 |
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
855 |
-
msgstr "
|
856 |
|
857 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
858 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
859 |
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
860 |
-
msgstr "
|
861 |
|
862 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
863 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
864 |
msgid ""
|
865 |
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
866 |
"in user)"
|
867 |
-
msgstr "
|
868 |
|
869 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
870 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
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:
|
875 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
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:
|
880 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
881 |
msgid "Current user ID"
|
882 |
-
msgstr "Aktuelle Benutzer
|
883 |
|
884 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
885 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
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
|
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 "
|
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 "
|
911 |
-
msgstr "Listen
|
912 |
|
913 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
914 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
915 |
msgid "Label"
|
916 |
msgstr "Beschreibung"
|
917 |
|
918 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
919 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
920 |
msgid "Placeholder"
|
921 |
msgstr "Platzhalter"
|
922 |
|
923 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
924 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
925 |
msgid "Labels"
|
926 |
msgstr "Beschriftungen"
|
927 |
|
928 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
929 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
930 |
msgid "(leave empty to hide)"
|
931 |
-
msgstr "(leer lassen
|
932 |
|
933 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
934 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
935 |
msgid "Wrap in paragraph %s tags?"
|
936 |
-
msgstr "
|
937 |
|
938 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
939 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
940 |
msgid "Required field?"
|
941 |
-
msgstr "
|
942 |
|
943 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
944 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
945 |
msgid "Add to form"
|
946 |
msgstr "Zum Formular hinzufügen"
|
947 |
|
948 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
949 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
950 |
msgid "Generated HTML"
|
951 |
msgstr "Generiertes HTML"
|
952 |
|
953 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
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:
|
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:
|
966 |
msgid ""
|
967 |
-
"Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress
|
968 |
-
"
|
969 |
-
msgstr "
|
970 |
|
971 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:
|
972 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:
|
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
|
979 |
-
msgstr "
|
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\">
|
984 |
-
"
|
985 |
-
|
|
|
986 |
|
987 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
988 |
-
msgid "
|
989 |
-
msgstr "
|
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
|
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
|
1012 |
|
1013 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-
|
1014 |
-
msgid "
|
1015 |
-
|
|
|
1016 |
|
1017 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1018 |
-
msgid ""
|
1019 |
-
"
|
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:
|
1023 |
-
msgid ""
|
1024 |
-
"
|
1025 |
-
|
1026 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
|
1028 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:
|
|
|
|
|
|
|
|
|
1029 |
msgid "Upgrade Now"
|
1030 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1031 |
|
1032 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1033 |
msgid "Documentation"
|
1034 |
msgstr "Dokumentation"
|
1035 |
|
1036 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1037 |
msgid "Save Form"
|
1038 |
-
msgstr "Formular
|
1039 |
|
1040 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1041 |
msgid "Update Form"
|
1042 |
-
msgstr "Formular
|
1043 |
|
1044 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1045 |
msgid "Back to general form settings"
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1049 |
msgid "Form updated."
|
1050 |
msgstr "Formular aktualisiert."
|
1051 |
|
1052 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1053 |
msgid "Form saved."
|
1054 |
msgstr "Formular gespeichert."
|
1055 |
|
1056 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1057 |
msgid "Optional Settings"
|
1058 |
msgstr "Optionale Einstellungen"
|
1059 |
|
1060 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
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
|
1067 |
|
1068 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1069 |
msgid "MailChimp & License"
|
1070 |
msgstr "MailChimp & Lizenz"
|
1071 |
|
1072 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1073 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
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:
|
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
|
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:
|
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:
|
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-
|
|
|
|
|
|
|
|
|
1102 |
msgid ""
|
1103 |
"Couldn't create the stylesheet. Manually add the generated CSS to your theme"
|
1104 |
-
" stylesheet
|
1105 |
-
msgstr "
|
1106 |
|
1107 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:
|
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:
|
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/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1122 |
msgid "I know. Don't bug me."
|
1123 |
-
msgstr "Ich
|
1124 |
|
1125 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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/
|
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/
|
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/
|
1140 |
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
1141 |
-
msgstr "<a href=\"%s\">
|
1142 |
|
1143 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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/
|
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/
|
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/
|
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/
|
1166 |
msgid "Your %s license has been deactivated."
|
1167 |
msgstr "Dein %s wurde deaktiviert."
|
1168 |
|
1169 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1170 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1171 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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/
|
1178 |
msgid "Failed to deactivate your %s license."
|
1179 |
msgstr "Die %s Lizenz konnte nicht deaktiviert werden."
|
1180 |
|
1181 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1182 |
msgid "Request error: \"%s\""
|
1183 |
msgstr "Fehler: \"%s\""
|
1184 |
|
1185 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1186 |
msgid "%s: License Settings"
|
1187 |
-
msgstr "%s: Lizenz
|
1188 |
|
1189 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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
|
1194 |
|
1195 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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/
|
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-
|
1205 |
|
1206 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1207 |
msgid "License status"
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1211 |
msgid "ACTIVE"
|
1212 |
msgstr "Aktiv"
|
1213 |
|
1214 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1215 |
msgid "you are receiving updates"
|
1216 |
-
msgstr "Du
|
1217 |
|
1218 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1219 |
msgid "EXPIRED"
|
1220 |
msgstr "ABGELAUFEN"
|
1221 |
|
1222 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1223 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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/
|
1228 |
msgid "INACTIVE"
|
1229 |
msgstr "Nicht Aktiv"
|
1230 |
|
1231 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1232 |
msgid "Toggle license status"
|
1233 |
-
msgstr "
|
1234 |
|
1235 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1236 |
msgid "Deactivate License"
|
1237 |
msgstr "Deaktiviere Lizenz"
|
1238 |
|
1239 |
-
#: mailchimp-for-wordpress-pro/includes/
|
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
|
1243 |
|
1244 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1245 |
msgid "Activate License"
|
1246 |
msgstr "Aktiviere Lizenz"
|
1247 |
|
1248 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1249 |
msgid "Please enter a license key in the field below first."
|
1250 |
-
msgstr "Bitte trage vorher einen Lizenz
|
1251 |
|
1252 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1253 |
msgid "License Key"
|
1254 |
msgstr "Lizenz Schlüssel"
|
1255 |
|
1256 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1257 |
msgid "Paste your license key here, as found in the email receipt."
|
1258 |
-
msgstr "Füge
|
1259 |
|
1260 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1261 |
msgid "Your %s license will expire on %s."
|
1262 |
-
msgstr "Deine %s Lizenz wird am %s
|
1263 |
|
1264 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1265 |
msgid "%sRenew your license now%s."
|
1266 |
msgstr "%sErneuere deine Lizenz jetzt%s."
|
1267 |
|
1268 |
-
#: mailchimp-for-wordpress-pro/includes/class-
|
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:
|
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:
|
1357 |
msgid "Shortcode"
|
1358 |
msgstr "Shortcode"
|
1359 |
|
1360 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1361 |
msgid "List(s)"
|
1362 |
msgstr "Liste(n)"
|
1363 |
|
1364 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1365 |
msgid "Last edited"
|
1366 |
msgstr "Zuletzt bearbeitet"
|
1367 |
|
1368 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1369 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1370 |
msgid "Edit Form"
|
1371 |
msgstr "Formular editieren"
|
1372 |
|
1373 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1374 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1375 |
msgid "Delete"
|
1376 |
msgstr "Löschen"
|
1377 |
|
1378 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1379 |
msgid "No MailChimp list(s) selected yet."
|
1380 |
-
msgstr "Noch keine MailChimp
|
1381 |
|
1382 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
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
|
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:
|
|
|
|
|
|
|
|
|
1426 |
msgid "Top Bar"
|
1427 |
msgstr "Top Bar"
|
1428 |
|
1429 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1430 |
msgid "MultiSite registration"
|
1431 |
msgstr "MultiSite-Registrierung"
|
1432 |
|
1433 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1434 |
msgid "Contact Form 7"
|
1435 |
msgstr "Contact Form 7"
|
1436 |
|
1437 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1438 |
msgid "bbPress: New Topic"
|
1439 |
msgstr "bbPress: Neues Thema"
|
1440 |
|
1441 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1442 |
msgid "bbPress: New Reply"
|
1443 |
msgstr "bbPress: Neue Antwort"
|
1444 |
|
1445 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1446 |
msgid "Other Form"
|
1447 |
msgstr "Anderes Formular"
|
1448 |
|
1449 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1450 |
msgid "No subscribe requests found."
|
1451 |
-
msgstr "Keine Anmelde
|
1452 |
|
1453 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1454 |
msgid "All"
|
1455 |
msgstr "Alle"
|
1456 |
|
1457 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1458 |
msgid "Checkbox"
|
1459 |
msgstr "Checkbox"
|
1460 |
|
1461 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1462 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
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:
|
1472 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1473 |
msgid "Checkout"
|
1474 |
msgstr "Zur Kasse"
|
1475 |
|
1476 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1477 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1478 |
msgid "Comment"
|
1479 |
msgstr "Kommentar"
|
1480 |
|
1481 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
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
|
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
|
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:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
1559 |
|
1560 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
|
1561 |
msgid "Custom label texts"
|
1562 |
-
msgstr "Benutzerdefinierte
|
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
|
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
|
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
|
1585 |
|
1586 |
-
#: mailchimp-for-wordpress-pro/includes/views/
|
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
|
1594 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
1595 |
|
1596 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
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:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|