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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1613 |
msgid "Are you sure you want to delete all custom styles for this form?"
|
1614 |
-
msgstr "Bist du sicher, dass du alle
|
1615 |
|
1616 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
1617 |
msgid "Delete Form Styles"
|
1618 |
msgstr "Formular-Styles löschen"
|
1619 |
|
1620 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
1621 |
-
msgid "
|
1622 |
-
msgstr "
|
1623 |
-
|
1624 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:231
|
1625 |
-
msgid "Build CSS File"
|
1626 |
-
msgstr "CSS-Datei erstellen"
|
1627 |
|
1628 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1629 |
msgid "Sign-Up Forms"
|
@@ -1635,14 +1943,14 @@ msgstr "Neues Formular erstellen"
|
|
1635 |
|
1636 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1637 |
msgid "General form settings"
|
1638 |
-
msgstr "Allgemeine Formular
|
1639 |
|
1640 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1641 |
msgid ""
|
1642 |
"If you %screated a custom stylesheet%s and want it to be loaded, select "
|
1643 |
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1644 |
" of the default themes."
|
1645 |
-
msgstr "Wenn du ein %sbenutzerdefiniertes Stylesheet erstellt%s hast und dieses laden möchtest, wähle \"
|
1646 |
|
1647 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1648 |
msgid "Select Color"
|
@@ -1654,18 +1962,24 @@ msgstr "Alle Änderungen speichern"
|
|
1654 |
|
1655 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1656 |
msgid "Default MailChimp settings"
|
1657 |
-
msgstr "Standard
|
1658 |
|
1659 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
|
1660 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1661 |
msgid ""
|
1662 |
"The following settings apply to <strong>all</strong> forms but can be "
|
1663 |
"overridden on a per-form basis."
|
1664 |
-
msgstr "Die folgenden Einstellungen gelten für <strong>alle</strong> Formulare, können aber
|
1665 |
|
1666 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
|
1667 |
msgid "Default Form Settings"
|
1668 |
-
msgstr "Standard
|
|
|
|
|
|
|
|
|
|
|
|
|
1669 |
|
1670 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1671 |
msgid "Default Messages"
|
1 |
# Copyright (C) 2015 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
+
# Aiko <aiko@goemann.org>, 2015
|
5 |
+
# Evgenja Ortmann <evgenja.ortmann@gmx.net>, 2015
|
6 |
# Freakspot, 2014
|
7 |
+
# Freakspot, 2014
|
8 |
+
# Jochen Gererstorfer, 2015
|
9 |
# S L <gitter.s@gmx.de>, 2015
|
10 |
# Stefan Oderbolz <oderbolz@gmail.com>, 2015
|
11 |
# Uwe <uwe.keim@gmail.com>, 2015
|
13 |
msgstr ""
|
14 |
"Project-Id-Version: MailChimp for WordPress\n"
|
15 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
16 |
+
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
17 |
+
"PO-Revision-Date: 2015-08-16 14:01+0000\n"
|
18 |
+
"Last-Translator: Jochen Gererstorfer\n"
|
19 |
+
"Language-Team: German (Germany) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_DE/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
21 |
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
"Content-Transfer-Encoding: 8bit\n"
|
32 |
"X-Poedit-SourceCharset: utf-8\n"
|
33 |
"X-Textdomain-Support: yes\n"
|
34 |
|
35 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:141
|
36 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:157
|
37 |
msgid "Settings"
|
38 |
msgstr "Einstellungen"
|
39 |
|
40 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:160
|
41 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
|
42 |
msgid "Upgrade to MailChimp for WordPress Pro"
|
43 |
msgstr "Wechsle zu MailChimp für WordPress Pro"
|
44 |
|
45 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:179
|
46 |
msgid "MailChimp API Settings"
|
47 |
+
msgstr "MailChimp API Einstellungen"
|
48 |
|
49 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:180
|
50 |
msgid "MailChimp"
|
51 |
msgstr "MailChimp"
|
52 |
|
53 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:185
|
54 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
55 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
|
56 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
57 |
msgid "Checkbox Settings"
|
58 |
+
msgstr "Checkbox Einstellungen"
|
59 |
|
60 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:186
|
61 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
62 |
msgid "Checkboxes"
|
63 |
+
msgstr "Checkboxen"
|
64 |
|
65 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
66 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
67 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
|
68 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
|
69 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
70 |
msgid "Form Settings"
|
71 |
msgstr "Formulareinstellungen"
|
72 |
|
73 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:192
|
74 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:513
|
75 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
76 |
msgid "Forms"
|
77 |
msgstr "Formulare"
|
78 |
|
79 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:196
|
80 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:197
|
81 |
msgid "Upgrade to Pro"
|
82 |
msgstr "Auf Pro upgraden"
|
83 |
|
84 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:283
|
85 |
msgid "This option is only available in MailChimp for WordPress Pro."
|
86 |
msgstr "Diese Option ist nur für MailChimp für Wordpress Pro verfügbar."
|
87 |
|
88 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:285
|
89 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
90 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
91 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
92 |
msgid "(PRO ONLY)"
|
93 |
msgstr "(NUR PRO)"
|
94 |
|
95 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
96 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
97 |
msgid "Button text"
|
98 |
+
msgstr "Button text"
|
99 |
|
100 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
101 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
102 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
|
103 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
104 |
msgid "Initial value"
|
105 |
msgstr "Anfangsangaben"
|
106 |
|
107 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:288
|
108 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
109 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
110 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
111 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
|
112 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
113 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
114 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
115 |
msgid "(optional)"
|
116 |
msgstr "(optional)"
|
117 |
|
118 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:289
|
119 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
|
120 |
msgid "Label for"
|
121 |
msgstr "Beschreibung für"
|
122 |
|
123 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:290
|
124 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
|
125 |
msgid "(or leave empty)"
|
126 |
msgstr "(oder leer lassen)"
|
127 |
|
128 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:291
|
129 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
|
130 |
msgid "Subscribe"
|
131 |
msgstr "abonnieren"
|
132 |
|
133 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
134 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
135 |
+
msgid "Unsubscribe"
|
136 |
+
msgstr "Abmelden"
|
137 |
+
|
138 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
139 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
140 |
msgid "Comment form"
|
141 |
msgstr "Kommentarformular"
|
142 |
|
143 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:317
|
144 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
|
145 |
msgid "Registration form"
|
146 |
msgstr "Registrierungsformular"
|
147 |
|
148 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
149 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
150 |
msgid "MultiSite forms"
|
151 |
msgstr "MultiSite-Formular"
|
152 |
|
153 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
154 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
155 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
156 |
msgid "BuddyPress registration"
|
157 |
msgstr "BuddyPress-Formular"
|
158 |
|
159 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:333
|
160 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:337
|
161 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
162 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
163 |
msgid "%s checkout"
|
164 |
msgstr "%s Checkout"
|
165 |
|
166 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
167 |
msgid ""
|
168 |
"The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
|
169 |
"first 100 lists are shown."
|
170 |
msgstr "Das Plugin kann nur max. 100 Listen von MailChimp abrufen, es werden also nur deine ersten 100 Listen angezeigt."
|
171 |
|
172 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:370
|
173 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:719
|
174 |
msgid "Renewed MailChimp cache."
|
175 |
+
msgstr "MailChimp Cache erneuern."
|
176 |
|
177 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:372
|
178 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
|
179 |
msgid "Failed to renew MailChimp cache - please try again later."
|
180 |
msgstr "Konnte den MailChimp Cache nicht erneuern - Bitte später noch einmal probieren."
|
181 |
|
182 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
msgid "MailChimp Sign-Up Form"
|
184 |
+
msgstr "MailChimp Registrierungsformular"
|
185 |
|
186 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:23
|
187 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
188 |
msgstr "Zeigt dein MailChimp für WordPress Registrierungsformular an"
|
189 |
|
190 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:67
|
191 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:71
|
192 |
msgid "Newsletter"
|
193 |
msgstr "Newsletter"
|
194 |
|
195 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:70
|
196 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:82
|
197 |
msgid "Title:"
|
198 |
msgstr "Titel:"
|
199 |
|
200 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:74
|
201 |
msgid ""
|
202 |
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
203 |
" form settings</a>."
|
204 |
msgstr "Du kannst dein Registrierungsformular in den <a href=\"%s\">MailChimp für WordPress Formulareinstellungen</a> editieren."
|
205 |
|
206 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:15
|
|
|
207 |
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
208 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
|
209 |
msgid "Email address"
|
210 |
+
msgstr "E-Mail Adresse"
|
211 |
|
212 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:16
|
213 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
|
214 |
+
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
|
215 |
msgid "Your email address"
|
216 |
+
msgstr "Deine E-Mail Adresse"
|
217 |
|
218 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:17
|
219 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
|
220 |
+
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:3
|
221 |
msgid "Sign up"
|
222 |
msgstr "Registrieren"
|
223 |
|
224 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:24
|
225 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:9
|
226 |
msgid "Sign me up for the newsletter!"
|
227 |
msgstr "Trage mich in den Newsletter ein!"
|
228 |
|
229 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
230 |
msgid ""
|
231 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
232 |
"inbox."
|
233 |
msgstr "Dankeschön, Deine Registrierungsanfrage war erfolgreich! Bitte überprüfe Deinen E-Mail-Eingang."
|
234 |
|
235 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
236 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
|
237 |
msgid "Oops. Something went wrong. Please try again later."
|
238 |
msgstr "Oops. Irgendwas ist schief gelaufen. Bitte versuche es später noch mal."
|
239 |
|
240 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
241 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
|
242 |
msgid "Please provide a valid email address."
|
243 |
+
msgstr "Bitte eine gültige E-Mail Adresse angeben."
|
244 |
|
245 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
246 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
|
247 |
msgid "Given email address is already subscribed, thank you!"
|
248 |
+
msgstr "Die angegebene E-Mail Adresse befindet sich bereits im Verteiler, danke!"
|
249 |
|
250 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
251 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
|
252 |
msgid "Please complete the CAPTCHA."
|
253 |
msgstr "Bitte das CAPTCHA vervollständigen."
|
254 |
|
255 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
256 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:39
|
257 |
msgid "Please fill in the required fields."
|
258 |
msgstr "Bitte fülle die erforderlichen Felder aus."
|
259 |
|
260 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:50
|
261 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
262 |
+
msgid "You were successfully unsubscribed."
|
263 |
+
msgstr "Du wurdest erfolgreich abgemeldet."
|
264 |
+
|
265 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
266 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
267 |
+
msgid "Given email address is not subscribed."
|
268 |
+
msgstr "Die angegebene E-Mail Adresse ist nicht abonniert."
|
269 |
+
|
270 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
271 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
272 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
333 |
msgid "No"
|
334 |
msgstr "Nein"
|
335 |
|
336 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:235
|
337 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
|
338 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:300
|
339 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
|
340 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
|
341 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
|
342 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
|
343 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
|
344 |
msgid "MailChimp for WordPress - Error"
|
345 |
msgstr "MailChimp für WordPress - Fehler"
|
346 |
|
347 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
|
348 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
|
349 |
msgid ""
|
350 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
351 |
"settings</a>."
|
352 |
+
msgstr "Bitte wähle aus, welches Registrierungsformular Du hier in den <a href=\"%s\">Widget Einstellungen</a> anzeigen möchtest."
|
353 |
|
354 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
|
355 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
|
356 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
|
357 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
|
358 |
msgid "This message is only visible to administrators for debugging purposes."
|
359 |
msgstr "Diese Nachricht ist nur sichtbar für Administratoren für Debugging-Zwecke."
|
360 |
|
361 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
|
362 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
|
363 |
msgid ""
|
364 |
"The MailChimp server returned the following error message as a response to "
|
365 |
"our sign-up request:"
|
366 |
+
msgstr "Der MailChimp Server hat die folgende Fehlernachricht als Antwort auf deine Registrierungsanfrage zurückgegeben."
|
367 |
|
368 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
|
369 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
|
370 |
msgid "This is the data that was sent to MailChimp:"
|
371 |
msgstr "Dies sind die Daten, die zu MailChimp gesendet wurden:"
|
372 |
|
373 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
|
374 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
375 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
376 |
msgid "Email address:"
|
377 |
msgstr "E-Mail-Adresse:"
|
378 |
|
379 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
380 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
381 |
msgid "Merge variables:"
|
382 |
msgstr "Variablen zusammenführen:"
|
383 |
|
389 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:99
|
390 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
391 |
msgid "MailChimp Settings"
|
392 |
+
msgstr "MailChimp Einstellungen"
|
393 |
|
394 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
395 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
396 |
msgid "API Settings"
|
397 |
+
msgstr "API Einstellungen"
|
398 |
|
399 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
400 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
409 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
410 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
411 |
msgid "API Key"
|
412 |
+
msgstr "API Schlüssel"
|
413 |
|
414 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
415 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
416 |
msgid "Your MailChimp API key"
|
417 |
+
msgstr "Dein MailChimp API Schlüssel"
|
418 |
|
419 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
420 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
421 |
msgid "Get your API key here."
|
422 |
+
msgstr "Den API Schlüssel bekommst du hier."
|
423 |
|
424 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
425 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
426 |
msgid "MailChimp Data"
|
427 |
+
msgstr "MailChimp Daten"
|
428 |
|
429 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
430 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
432 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
433 |
"your MailChimp lists, please use the following button to renew your cached "
|
434 |
"data."
|
435 |
+
msgstr "Die Tabelle zeigt die Daten zu deinen MailChimp Listen. Wenn du bei den MailChimp Listen Änderungen gemacht hast, nutze bitte den folgenden Button um die Daten neu zu laden."
|
436 |
|
437 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
438 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
439 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
440 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
441 |
msgid "Renew MailChimp lists"
|
442 |
+
msgstr "MailChimp Listen neu laden"
|
443 |
|
444 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
445 |
msgid "No lists were found in your MailChimp account"
|
446 |
+
msgstr "In Deinem MailChimp Account wurden keine Mailinglisten gefunden"
|
447 |
|
448 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
449 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
450 |
msgid ""
|
451 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
452 |
"checkbox to."
|
453 |
+
msgstr "Um die Registrierungs-Checkboxen zu nutzen, wähle mindestens eine Liste und ein Formular, um die Checkbox auch hinzuzufügen."
|
454 |
|
455 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
456 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
457 |
msgid "MailChimp settings for checkboxes"
|
458 |
+
msgstr "MailChimp Einstellungen für Checkboxen"
|
459 |
|
460 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
461 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
462 |
msgid ""
|
463 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
464 |
" subscribe people to."
|
465 |
+
msgstr "Wenn du die Registrierungs-Checkboxen nutzen möchtest, wähle mindestens eine MailChimp Liste in welche die Adressen gespeichert werden."
|
466 |
|
467 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
468 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
469 |
msgid "MailChimp Lists"
|
470 |
+
msgstr "MailChimp Listen"
|
471 |
|
472 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
473 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
481 |
msgid ""
|
482 |
"Select the list(s) to which people who check the checkbox should be "
|
483 |
"subscribed."
|
484 |
+
msgstr "Wähle die Listen zu welchen, die Abonnenten die die Checkbox ausgewählt haben, eingetragen werden sollen."
|
485 |
|
486 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
487 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:102
|
489 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
|
490 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
491 |
msgid "Double opt-in?"
|
492 |
+
msgstr "Double opt-in?"
|
493 |
|
494 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
|
495 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:113
|
499 |
msgid ""
|
500 |
"Select \"yes\" if you want people to confirm their email address before "
|
501 |
"being subscribed (recommended)"
|
502 |
+
msgstr "Wähle \"ja\" wenn du möchtest, dass die E-Mail Adresse bestätigt werden muss. (empfohlen)"
|
503 |
|
504 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
505 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
|
506 |
msgid "Checkbox settings"
|
507 |
+
msgstr "Checkbox Einstellungen"
|
508 |
|
509 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
510 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
|
511 |
msgid "Add the checkbox to these forms"
|
512 |
+
msgstr "Füge diese Checkbox zu diesen Formularen"
|
513 |
|
514 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
515 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
|
516 |
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
517 |
+
msgstr "Wenn ein Formular ausgewählt wird, wird automatisch die Registrierungs-Checkbox hinzugefügt."
|
518 |
|
519 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
520 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
521 |
msgid "Checkbox label text"
|
522 |
+
msgstr "Checkbox Beschriftung Text"
|
523 |
|
524 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
525 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
526 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
|
527 |
msgid "HTML tags like %s are allowed in the label text."
|
528 |
+
msgstr "HTML Tags wie %s sind in den Beschriftungen erlaubt."
|
529 |
|
530 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
531 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
532 |
msgid "Pre-check the checkbox?"
|
533 |
+
msgstr "Die Checkbox vorauswählen?"
|
534 |
|
535 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
536 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
|
540 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
541 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
|
542 |
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
543 |
+
msgstr "Wähle \"ja\", falls die Checkbox an einem ungewünschten Platz angezeigt wird."
|
544 |
|
545 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
|
546 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
|
547 |
msgid "WooCommerce checkbox position"
|
548 |
+
msgstr "WooCommerce Checkbox Position"
|
549 |
|
550 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
|
551 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
|
561 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
|
562 |
msgid ""
|
563 |
"Choose the position for the checkbox in your WooCommerce checkout form."
|
564 |
+
msgstr "Wähle die Position für die Checkbox in Deinem WooCommerce Checkout Formular."
|
565 |
|
566 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
567 |
msgid ""
|
568 |
"To use the MailChimp sign-up form, configure the form below and then either "
|
569 |
"paste %s in the content of a post or page or use the widget."
|
570 |
+
msgstr "Um das MailChimp Registrierungsformular nutzen zu können, individualisiere das untenstehende Formular und dann kopiere %s in den Inhalt einer Seite oder eines Posts oder benutze ein Widget."
|
571 |
|
572 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
573 |
msgid "Required form settings"
|
576 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
577 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
578 |
msgid "Load form styles (CSS)?"
|
579 |
+
msgstr "Lade Formular Stile (CSS)?"
|
580 |
|
581 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
582 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
583 |
msgid "Yes, load basic form styles"
|
584 |
+
msgstr "Ja, lade Standard Formular Stile"
|
585 |
|
586 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
587 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
588 |
msgid "Yes, load my custom form styles"
|
589 |
+
msgstr "Ja, lade meine eigenen Formular Stile"
|
590 |
|
591 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
592 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
593 |
msgid "Yes, load default form theme"
|
594 |
+
msgstr "Ja, lade Standard Formular Theme"
|
595 |
|
596 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
597 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
621 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
622 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
623 |
msgid "Custom Color Theme"
|
624 |
+
msgstr "Benutzerdefinierte Farben Theme"
|
625 |
|
626 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
627 |
msgid ""
|
628 |
"If you want to load some default CSS styles, select \"basic formatting "
|
629 |
"styles\" or choose one of the color themes"
|
630 |
+
msgstr "Wenn du ein %sbenutzerdefiniertes Stylesheet erstellt%s hast und dieses laden möchtest, wähle \"eigenen Formularstil\". Andernfalls wähle eines der Standard Formularstile oder eines der Standard Themes."
|
631 |
|
632 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
633 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
645 |
msgstr "Formular Markup"
|
646 |
|
647 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:79
|
648 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
|
649 |
msgid ""
|
650 |
"Use the shortcode %s to display this form inside a post, page or text "
|
651 |
"widget."
|
652 |
+
msgstr "Benutze diesen Shortcode %s um dieses Formular innerhalb eines Posts, Seite oder Text Widgets zu nutzen."
|
653 |
|
654 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
655 |
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
661 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
662 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
663 |
msgid "Send Welcome Email?"
|
664 |
+
msgstr "Willkommens E-Mail senden?"
|
665 |
|
666 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:128
|
667 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
670 |
msgid ""
|
671 |
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
672 |
"succeeds (only when double opt-in is disabled)."
|
673 |
+
msgstr "Wähle \"ja\" wenn du die Listen Willkommens E-Mail versenden möchtest, wenn ein Abonnement erfolgreich war (nur wenn Bouble Opt-in deaktiviert ist)."
|
674 |
|
675 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:131
|
676 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
704 |
|
705 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:156
|
706 |
msgid "Form Settings & Messages"
|
707 |
+
msgstr "Formular Einstellungen & Nachrichten"
|
708 |
|
709 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:160
|
710 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
711 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
712 |
msgid "Enable AJAX form submission?"
|
713 |
+
msgstr "AJAX Formular aktivieren?"
|
714 |
|
715 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:171
|
716 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
717 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
718 |
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
719 |
+
msgstr "Wähle \"ja\" wenn du das AJAX (JavaScript) Formular verwenden möchtest."
|
720 |
|
721 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:174
|
722 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
728 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
|
729 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
|
730 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
731 |
+
msgstr "Wähle \"ja\" wenn du die Formular Felder verstecken möchtest, nach einer erfolgreichen Registrierung."
|
732 |
|
733 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:188
|
734 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
|
742 |
|
743 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:191
|
744 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
|
|
|
745 |
msgid ""
|
746 |
+
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
747 |
+
" (absolute) URLs, including <code>http://</code>."
|
748 |
+
msgstr "Leer lassen oder <code>0</code> eingeben für keine Weiterleitung. Ansonsten verwende (absolute) URLs, inkl. <code>http://</code>."
|
749 |
|
750 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
751 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
752 |
+
msgid "Successfully subscribed"
|
753 |
+
msgstr "Erfolgreich abonniert"
|
754 |
|
755 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
756 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
757 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
|
758 |
+
msgid ""
|
759 |
+
"The text that shows when an email address is successfully subscribed to the "
|
760 |
+
"selected list(s)."
|
761 |
+
msgstr "Der Text, der angezeigt wird, wenn eine E-Mail Adresse erfolgreich zur/zu den ausgewählten Liste(n) abonniert wurde."
|
762 |
|
763 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:202
|
764 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
|
765 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
|
766 |
+
msgid "Invalid email address"
|
767 |
+
msgstr "Ungültige E-Mail-Adresse"
|
768 |
|
769 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:205
|
770 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
|
771 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
|
772 |
+
msgid "The text that shows when an invalid email address is given."
|
773 |
+
msgstr "Der Text, der angezeigt wird, wenn eine ungültige E-Mail Adresse angegeben wurde."
|
774 |
+
|
775 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
776 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
|
777 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
|
778 |
+
msgid "Required field missing"
|
779 |
+
msgstr "Erforderliches Feld fehlt"
|
780 |
|
781 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:212
|
782 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
|
783 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
|
784 |
+
msgid ""
|
785 |
+
"The text that shows when a required field for the selected list(s) is "
|
786 |
+
"missing."
|
787 |
+
msgstr "Der Text, der angezeigt wird, wenn ein erforderliches Feld für die ausgewählte(n) Liste(n) fehlt."
|
788 |
|
789 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:216
|
790 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
|
791 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
|
792 |
+
msgid "Already subscribed"
|
793 |
+
msgstr "Bereits abonniert"
|
794 |
+
|
795 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
796 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
|
797 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
|
798 |
+
msgid ""
|
799 |
+
"The text that shows when the given email is already subscribed to the "
|
800 |
+
"selected list(s)."
|
801 |
+
msgstr "Der Text, der angezeigt wird, wenn die angegebene E-Mail Adresse bereits für die ausgewählte(n) Liste(n) abonniert ist."
|
802 |
|
803 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:224
|
804 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
|
805 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
806 |
+
msgid "Invalid CAPTCHA"
|
807 |
+
msgstr "Ungültiges CAPTCHA"
|
808 |
|
809 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
810 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
811 |
+
msgid "General error"
|
812 |
+
msgstr "Allgemeiner Fehler"
|
813 |
|
814 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
815 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
816 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
|
817 |
+
msgid "The text that shows when a general error occured."
|
818 |
+
msgstr "Der Text, der angezeigt wird, wenn ein allgemeiner Fehler aufgetreten ist."
|
819 |
+
|
820 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:236
|
821 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
|
822 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
|
823 |
+
msgid "Unsubscribed"
|
824 |
+
msgstr "Abgemeldet"
|
825 |
|
826 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
827 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
|
828 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
|
829 |
msgid ""
|
830 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
831 |
+
"given email address is successfully unsubscribed from the selected list(s)."
|
832 |
+
msgstr "Wenn die \"Abmelden\" Funktion verwendet wird, ist dies der Text der angezeigt wird, wenn die angegebene E-Mail Adresse erfolgreich von der/den ausgewählten Liste(n) abgemeldet wurde."
|
|
|
833 |
|
834 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:243
|
835 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
836 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
|
837 |
+
msgid "Not subscribed"
|
838 |
+
msgstr "Nicht abonniert"
|
839 |
+
|
840 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:246
|
841 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
|
842 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
|
843 |
+
msgid ""
|
844 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
845 |
+
"given email address is not on the selected list(s)."
|
846 |
+
msgstr "Wenn die \"Abmelden\" Funktion verwendet wird, ist dies der Text der angezeigt wird, wenn die angegebene E-Mail Adresse die ausgewählte Liste nicht abonniert hat."
|
847 |
+
|
848 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:252
|
849 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
|
850 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
|
851 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
852 |
+
msgstr "HTML Tags wie %s sind in den Nachrichten Feldern erlaubt."
|
853 |
+
|
854 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:266
|
855 |
msgid "Form Styling"
|
856 |
+
msgstr "Formular Styling"
|
857 |
|
858 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:267
|
859 |
msgid "Alter the visual appearance of the form by applying CSS rules to %s."
|
860 |
msgstr "Ändere das Aussehen des Formulars indem CSS-Regeln auf %s angewendet werden."
|
861 |
|
862 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:268
|
863 |
msgid ""
|
864 |
"You can add the CSS rules to your theme stylesheet using the <a "
|
865 |
+
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
866 |
+
msgstr ""
|
|
|
867 |
|
868 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:269
|
869 |
msgid ""
|
870 |
"The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
|
871 |
"selectors you can use to target the different form elements."
|
872 |
+
msgstr "Die <a href=\"%s\" target=\"_blank\">Plugin FAQ</a> zählt die verschiedenen CSS-Selektoren auf, mit denen die die verschiedenen Formularelemente ansteuern kannst."
|
873 |
|
874 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:270
|
875 |
msgid ""
|
876 |
+
"If you need an easier way to style your forms, consider <a "
|
877 |
+
"href=\"%s\">upgrading to MailChimp for WordPress Pro</a> which comes with an"
|
878 |
+
" easy Styles Builder."
|
879 |
+
msgstr ""
|
880 |
|
881 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
882 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
883 |
+
msgid "Variables"
|
884 |
+
msgstr "Variablen"
|
885 |
|
886 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
887 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
888 |
+
msgid ""
|
889 |
+
"The following list of variables can be used to <a href=\"%s\">add some "
|
890 |
+
"dynamic content to your form or success and error messages</a>."
|
891 |
+
msgstr ""
|
892 |
|
893 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
894 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
895 |
+
msgid "This allows you to personalise your form or response messages."
|
896 |
+
msgstr "Hier kannst du dein Formular und deine Antwort-Nachrichten anpassen."
|
897 |
+
|
898 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
899 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
900 |
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
901 |
+
msgstr "Ersetzt mit der Email-Adresse des Besuchers (falls in der URL oder dem Cookie gesetzt),"
|
902 |
|
903 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:286
|
904 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
|
905 |
msgid "Replaced with the form response (error or success messages)."
|
906 |
msgstr "Ersetzt mit der Formular-Antwort (Fehler- oder Erfolgsmeldungen)."
|
907 |
|
908 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
909 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
|
910 |
msgid "Replaced with a captcha field."
|
911 |
msgstr "Ersetzt durch ein Captcha-Feld."
|
912 |
|
913 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:296
|
914 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
|
915 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
916 |
+
msgstr "Ersetzten mit der Nummer von Abonnenten der gewählten Listen"
|
917 |
|
918 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:300
|
919 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
|
920 |
msgid "Replaced with the current site language, eg: %s"
|
921 |
msgstr "Ersetzt mit der derzeitig gesetzten Sprache, z.B. %s"
|
922 |
|
923 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:304
|
924 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
|
925 |
msgid "Replaced with the visitor's IP address"
|
926 |
+
msgstr "Ersetzten mit der Besucher IP Adresse"
|
927 |
|
928 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:308
|
929 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
|
930 |
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
931 |
+
msgstr "Ersetzten mit dem aktuellen Datum (yyyy/mm/dd eg: %s)"
|
932 |
|
933 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:312
|
934 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:46
|
935 |
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
936 |
+
msgstr "Ersetzten mit der aktuellen Uhrzeit (hh:mm:ss eg: %s)"
|
937 |
|
938 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:316
|
939 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:50
|
940 |
msgid ""
|
941 |
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
942 |
"in user)"
|
943 |
+
msgstr "Ersetzten mit der E-Mail des eingeloggten Benutzers (oder nicht, wenn der User nicht eingeloggt ist)"
|
944 |
|
945 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:320
|
946 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:54
|
947 |
msgid "First name of the current user"
|
948 |
msgstr "Den Vornamen des aktuellen Benutzers anzeigen"
|
949 |
|
950 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:324
|
951 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:58
|
952 |
msgid "Last name of the current user"
|
953 |
msgstr "Den Nachnamen des aktuellen Benutzers anzeigen"
|
954 |
|
955 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:328
|
956 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
|
957 |
msgid "Current user ID"
|
958 |
+
msgstr "Aktuelle Benutzer ID"
|
959 |
|
960 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:332
|
961 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
|
962 |
msgid "Current URL"
|
963 |
msgstr "Aktuelle URL"
|
964 |
|
965 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
966 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
967 |
+
msgid "The value of the <strong>FNAME</strong> field, if set."
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
971 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
972 |
msgid "Add a new field"
|
979 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
|
980 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
|
981 |
msgid "Select MailChimp field.."
|
982 |
+
msgstr "Wähle MailChimp Feld.."
|
983 |
|
984 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
|
|
|
985 |
msgid "Submit Button"
|
986 |
+
msgstr "Absenden Button"
|
987 |
|
988 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
989 |
+
msgid "Subscribe / unsubscribe choice"
|
990 |
+
msgstr "Abonnieren / Abmelden Auswahl"
|
991 |
+
|
992 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
993 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
994 |
+
msgid "List choice"
|
995 |
+
msgstr "Listen-Auswahl"
|
996 |
|
997 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
998 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
999 |
msgid "Label"
|
1000 |
msgstr "Beschreibung"
|
1001 |
|
1002 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
1003 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
1004 |
msgid "Placeholder"
|
1005 |
msgstr "Platzhalter"
|
1006 |
|
1007 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1008 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1009 |
msgid "Labels"
|
1010 |
msgstr "Beschriftungen"
|
1011 |
|
1012 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1013 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1014 |
msgid "(leave empty to hide)"
|
1015 |
+
msgstr "(leer lassen um zu verbergen)"
|
1016 |
|
1017 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
|
1018 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
|
1019 |
msgid "Wrap in paragraph %s tags?"
|
1020 |
+
msgstr "Von Paragraph %s Tags umgeben lassen?"
|
1021 |
|
1022 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
|
1023 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
|
1024 |
msgid "Required field?"
|
1025 |
+
msgstr "Verpflichtendes Feld?"
|
1026 |
|
1027 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
|
1028 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
|
1029 |
msgid "Add to form"
|
1030 |
msgstr "Zum Formular hinzufügen"
|
1031 |
|
1032 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
|
1033 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
|
1034 |
msgid "Generated HTML"
|
1035 |
msgstr "Generiertes HTML"
|
1036 |
|
1037 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
|
1038 |
msgid "Select at least one list first."
|
1039 |
msgstr "Als erstes eine Liste auswählen."
|
1040 |
|
1041 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
|
1042 |
msgid ""
|
1043 |
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
1044 |
"translated in your language or do you spot errors with the current "
|
1046 |
"translation project and click \"help translate\"</a>."
|
1047 |
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>."
|
1048 |
|
1049 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:14
|
1050 |
msgid ""
|
1051 |
+
"Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress "
|
1052 |
+
"Pro</a> for an even better plugin, you will love it."
|
1053 |
+
msgstr ""
|
1054 |
|
1055 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:20
|
1056 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:13
|
1057 |
msgid ""
|
1058 |
"This plugin is not developed by or affiliated with MailChimp in any way."
|
1059 |
msgstr "Dieses Plugin ist weder von MailChimp entwickelt noch sonst irgendwie daran angegliedert."
|
1060 |
|
1061 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1062 |
+
msgid "Looking for help?"
|
1063 |
+
msgstr "Brauchst du Hilfe?"
|
1064 |
|
1065 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1066 |
msgid ""
|
1067 |
+
"Make sure to look at the <a href=\"%s\">MailChimp for WordPress "
|
1068 |
+
"documentation</a>, the plugin <a href=\"%s\">FAQ</a> or use the <a "
|
1069 |
+
"href=\"%s\">support forums</a> on WordPress.org."
|
1070 |
+
msgstr ""
|
1071 |
|
1072 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1073 |
+
msgid "Do you enjoy this plugin?"
|
1074 |
+
msgstr "Gefällt dir das Plugin?"
|
1075 |
|
1076 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
1077 |
msgid "Leave a %s plugin review on WordPress.org"
|
1079 |
|
1080 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
1081 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
1082 |
+
msgstr "Ich verwende MailChimp für WordPress by @DannyvanKooten - es ist grossartig!"
|
1083 |
|
1084 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
1085 |
msgid "Tweet about MailChimp for WordPress"
|
1091 |
"page</a>."
|
1092 |
msgstr "Mach einen Review von diesem Plugin auf deinem Blog und linke zur <a href=\"%s\">Plugin-Seite</a>."
|
1093 |
|
1094 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
1095 |
+
msgid "There is an <a href=\"%s\">affiliate program</a> as well."
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
1099 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
1100 |
+
msgstr "Stimme für \"works\" auf der WordPress.org Plugin Seite"
|
1101 |
|
1102 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
|
1103 |
+
msgid ""
|
1104 |
+
"This plugin has an even better premium version, you will absolutely love it."
|
1105 |
+
msgstr ""
|
1106 |
|
1107 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1108 |
+
msgid "Some differences with this free version of the plugin:"
|
1109 |
+
msgstr "Einige Unterschiede zu der Free-Version des Plugins:"
|
|
|
1110 |
|
1111 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1112 |
+
msgid "Multiple forms"
|
1113 |
+
msgstr "Mehrere Formulare"
|
1114 |
+
|
1115 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
|
1116 |
+
msgid "Each subscribing to one or multiple MailChimp lists."
|
1117 |
+
msgstr "Jede Anmeldung zu einer oder mehreren MailChimp Listen."
|
1118 |
+
|
1119 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1120 |
+
msgid "AJAX forms"
|
1121 |
+
msgstr "AJAX Formular"
|
1122 |
+
|
1123 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1124 |
+
msgid "Forms do not require a full page reload."
|
1125 |
+
msgstr "Formulare müssen nicht die ganze Seite neu laden."
|
1126 |
+
|
1127 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
|
1128 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
|
1129 |
+
msgid "Statistics"
|
1130 |
+
msgstr "Statistiken"
|
1131 |
+
|
1132 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
|
1133 |
+
msgid "Every form interaction is logged and visualised in insightful charts."
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
|
1137 |
+
msgid "Styles Builder"
|
1138 |
+
msgstr "Styles Builder"
|
1139 |
|
1140 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1141 |
+
msgid "Create beautiful form themes with ease."
|
1142 |
+
msgstr "Erstelle schöne Formulare mit Leichtigkeit."
|
1143 |
+
|
1144 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
|
1145 |
msgid "Upgrade Now"
|
1146 |
+
msgstr "Wechsle jetzt"
|
1147 |
+
|
1148 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1149 |
+
msgid "View Demo"
|
1150 |
+
msgstr "Demo anschauen"
|
1151 |
|
1152 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
|
1153 |
msgid "Documentation"
|
1154 |
msgstr "Dokumentation"
|
1155 |
|
1156 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:240
|
1157 |
msgid "Save Form"
|
1158 |
+
msgstr "Formular Speichern"
|
1159 |
|
1160 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:244
|
1161 |
msgid "Update Form"
|
1162 |
+
msgstr "Formular Aktualisieren"
|
1163 |
|
1164 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:295
|
1165 |
msgid "Back to general form settings"
|
1166 |
+
msgstr "Zu den Standard Formular Einstellungen"
|
1167 |
|
1168 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:297
|
1169 |
msgid "Form updated."
|
1170 |
msgstr "Formular aktualisiert."
|
1171 |
|
1172 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:298
|
1173 |
msgid "Form saved."
|
1174 |
msgstr "Formular gespeichert."
|
1175 |
|
1176 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:365
|
1177 |
msgid "Optional Settings"
|
1178 |
msgstr "Optionale Einstellungen"
|
1179 |
|
1180 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
|
|
|
|
|
|
|
|
|
1181 |
msgid "MailChimp & Plugin License Settings"
|
1182 |
+
msgstr "MailChimp & Plugin-Lizenz Einstellungen"
|
1183 |
|
1184 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
|
1185 |
msgid "MailChimp & License"
|
1186 |
msgstr "MailChimp & Lizenz"
|
1187 |
|
1188 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:517
|
1189 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:518
|
1190 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
|
1191 |
msgid "Reports"
|
1192 |
msgstr "Berichte"
|
1193 |
|
1194 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:709
|
1195 |
msgid ""
|
1196 |
"Please make sure the plugin is connected to MailChimp. <a "
|
1197 |
"href=\"%s\">Provide a valid API key.</a>"
|
1198 |
+
msgstr "Bitte stelle sicher, dass das Plugin mit MailChimp verbunden ist. <a href=\"%s\">Gültigen API Schlüssel eingeben.</a>"
|
|
|
|
|
|
|
|
|
1199 |
|
1200 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
|
1201 |
msgid ""
|
1202 |
"You disabled logging using the %s filter. Re-enable it to use the Reports "
|
1203 |
"page."
|
1204 |
msgstr "Du hast das Logging mit dem %s Filter abgeschaltet. Aktiviere es wieder um die Reports-Seite benutzen zu können."
|
1205 |
|
1206 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:840
|
1207 |
msgid ""
|
1208 |
"<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
|
1209 |
"settings you set in the Lite version, you can safely <a "
|
1210 |
"href=\"%s\">deactivate it now</a>."
|
1211 |
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>."
|
1212 |
|
1213 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-statistics.php:130
|
1214 |
+
msgid "End date can't be before the start date"
|
1215 |
+
msgstr "Enddatum kann nicht vor dem Startdatum sein"
|
1216 |
+
|
1217 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:436
|
1218 |
msgid ""
|
1219 |
"Couldn't create the stylesheet. Manually add the generated CSS to your theme"
|
1220 |
+
" stylesheet or use a plugin like <em>%s</em>."
|
1221 |
+
msgstr ""
|
1222 |
|
1223 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:437
|
1224 |
msgid "%sShow generated CSS%s"
|
1225 |
msgstr "%sZeige das generierte CSS%s"
|
1226 |
|
1227 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:447
|
|
|
|
|
|
|
|
|
|
|
|
|
1228 |
msgid "The %sCSS Stylesheet%s has been created."
|
1229 |
msgstr "Das %sCSS Stylesheet%s wurde erstellt."
|
1230 |
|
1231 |
+
#: mailchimp-for-wordpress-pro/includes/class-form-manager.php:263
|
1232 |
+
msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
|
1233 |
+
msgstr "<strong>Fehler:</strong> Bitte eine Formular ID angeben. Beispiel: %s."
|
1234 |
+
|
1235 |
+
#: mailchimp-for-wordpress-pro/includes/class-form-manager.php:278
|
1236 |
+
msgid ""
|
1237 |
+
"<strong>Error:</strong> Sign-up form not found. Please check if you used the"
|
1238 |
+
" correct form ID."
|
1239 |
+
msgstr "<strong>Fehler:</strong> Registrierungsformular nicht gefunden . Bitte überprüfe ob die richtige Formular ID verwendet wurde."
|
1240 |
+
|
1241 |
+
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
|
1242 |
+
msgid "IP Address"
|
1243 |
+
msgstr "IP Adresse"
|
1244 |
+
|
1245 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:199
|
1246 |
+
msgid "New MailChimp Sign-Up"
|
1247 |
+
msgstr "Neue MailChimp Registrierung"
|
1248 |
+
|
1249 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:207
|
1250 |
+
msgid "New Sign-Up"
|
1251 |
+
msgstr "Neue Registrierung"
|
1252 |
+
|
1253 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:208
|
1254 |
+
msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
|
1255 |
+
msgstr "<strong>%s</strong> hat sich um %s auf %s registriert und hat dafür das Formular \"%s\" genutzt."
|
1256 |
+
|
1257 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:213
|
1258 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:77
|
1259 |
+
msgid "List"
|
1260 |
+
msgstr "Liste"
|
1261 |
+
|
1262 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:253
|
1263 |
+
msgid "Other fields"
|
1264 |
+
msgstr "Andere Felder"
|
1265 |
+
|
1266 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:275
|
1267 |
+
msgid ""
|
1268 |
+
"Note that you've enabled double opt-in for the \"%s\" form. The user won't "
|
1269 |
+
"be added to the selected MailChimp lists until they confirm their email "
|
1270 |
+
"address."
|
1271 |
+
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 Email-Adresse bestätigt hat."
|
1272 |
+
|
1273 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:277
|
1274 |
+
msgid "This email was auto-sent by the MailChimp for WordPress plugin."
|
1275 |
+
msgstr "Diese E-Mail wurde automatisch vom MailChimp für WordPress Plugin versendet."
|
1276 |
+
|
1277 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1278 |
+
msgid "MailChimp for WP Form"
|
1279 |
+
msgstr "MailChimp for WP Formular"
|
1280 |
+
|
1281 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:21
|
1282 |
+
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
1283 |
+
msgstr "Zeige eines deiner MailChimp für WordPress Registrierungsformulare an"
|
1284 |
+
|
1285 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:43
|
1286 |
+
msgid ""
|
1287 |
+
"Please select the sign-up form you'd like to show here in the <a "
|
1288 |
+
"href=\"%s\">widget settings</a>."
|
1289 |
+
msgstr "Bitte wähle aus, welches Registrierungsformular du hier in den <a href=\"%s\">Widget Einstellungen</a> anzeigen möchtest."
|
1290 |
+
|
1291 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:86
|
1292 |
+
msgid "Form:"
|
1293 |
+
msgstr "Formular:"
|
1294 |
+
|
1295 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:88
|
1296 |
+
msgid "Select the form to show"
|
1297 |
+
msgstr "Wähle ein Formular aus"
|
1298 |
+
|
1299 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:96
|
1300 |
+
msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
|
1301 |
+
msgstr "Du hast keine Registrierungsformulare. <a href=\"%s\">Erstelle jetzt eines.</a>"
|
1302 |
+
|
1303 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:34
|
1304 |
+
msgid ""
|
1305 |
+
"Thank you, your sign-up request was successful! Please check your email "
|
1306 |
+
"inbox to confirm."
|
1307 |
+
msgstr "Danke, deine Anfrage war erfolgreich! Bitte prüfe dein E-Mail Konto für die Bestätigung."
|
1308 |
+
|
1309 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:144
|
1310 |
msgid "I know. Don't bug me."
|
1311 |
+
msgstr "Ich weiss. Lass mich in Ruhe."
|
1312 |
|
1313 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:163
|
1314 |
msgid ""
|
1315 |
"<b>Warning!</b> You're blocking external requests which means you won't be "
|
1316 |
"able to get %s updates. Please add %s to %s."
|
1317 |
msgstr "<b>Achtung!</b> Du blockierst externe Anfragen, deshalb bekommst du keine %s Updates. Bitte mache %s zu %s."
|
1318 |
|
1319 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
|
1320 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1321 |
msgstr "Deine %s Lizenz wurde aktiviert. Du hast eine unlimitierte Lizenz."
|
1322 |
|
1323 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
|
1324 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
1325 |
msgstr "Deine %s Lizenz wurde aktiviert. Du hast %d/%d Aktivierungen genutzt."
|
1326 |
|
1327 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
|
1328 |
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
1329 |
+
msgstr "<a href=\"%s\"> Weisst du wie du deine Lizenz upgraden kannst?</a>"
|
1330 |
|
1331 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
|
1332 |
msgid ""
|
1333 |
"<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
|
1334 |
" it?</a>"
|
1335 |
msgstr "<a href=\"%s\">Deine Lizenz verfällt in %d Tagen, willst du sie verlängern?</a>"
|
1336 |
|
1337 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:225
|
1338 |
msgid ""
|
1339 |
"You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
|
1340 |
"<a href=\"%s\">upgrade your license</a> to use it on this site."
|
1341 |
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."
|
1342 |
|
1343 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:229
|
1344 |
msgid ""
|
1345 |
"Your license has expired. You must <a href=\"%s\">renew your license</a> if "
|
1346 |
"you want to use it again."
|
1347 |
msgstr "Deine Lizenz ist abgelaufen. Du musst deine <a href=\"%s\">Lizenz erneuern</a>, wenn du es wieder benutzen möchtest."
|
1348 |
|
1349 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
|
1350 |
msgid "Failed to activate your license, your license key seems to be invalid."
|
1351 |
msgstr "Die Lizenz konnte nicht aktiviert werden, die Lizenz scheint ungültig zu sein."
|
1352 |
|
1353 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
|
1354 |
msgid "Your %s license has been deactivated."
|
1355 |
msgstr "Dein %s wurde deaktiviert."
|
1356 |
|
1357 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:262
|
1358 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:66
|
1359 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
|
1360 |
msgid ""
|
1361 |
"Your plugin license has expired. You will no longer have access to plugin "
|
1362 |
"updates unless you <a href=\"%s\">renew your license</a>."
|
1363 |
msgstr "Deine Lizenz ist abgelaufen. Du hast somit keinen Zugriff mehr auf Updates bis du deine <a href=\"%s\">Lizenz erneuert</a> hast."
|
1364 |
|
1365 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1366 |
msgid "Failed to deactivate your %s license."
|
1367 |
msgstr "Die %s Lizenz konnte nicht deaktiviert werden."
|
1368 |
|
1369 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
|
1370 |
msgid "Request error: \"%s\""
|
1371 |
msgstr "Fehler: \"%s\""
|
1372 |
|
1373 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:461
|
1374 |
msgid "%s: License Settings"
|
1375 |
+
msgstr "%s: Lizenz Einstellungen"
|
1376 |
|
1377 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-plugin-license-manager.php:67
|
1378 |
msgid ""
|
1379 |
"%s is network activated, please contact your site administrator to manage "
|
1380 |
"the license."
|
1381 |
+
msgstr "%s ist Netzwerk aktiviert, bitte kontaktiere den Netzwerk Admin um die Lizenz zu verwalten."
|
1382 |
|
1383 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:64
|
1384 |
msgid ""
|
1385 |
"%s failed to check for updates because of the following error: <em>%s</em>"
|
1386 |
msgstr "%s konnte nicht auf Updates prüfen, wegen dem folgenden Fehler: <em>%s</em>"
|
1387 |
|
1388 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:126
|
1389 |
msgid ""
|
1390 |
"This site has not been activated properly on mc4wp.com and thus cannot check"
|
1391 |
" for future updates. Please activate your site with a valid license key."
|
1392 |
+
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-Key."
|
1393 |
|
1394 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:23
|
1395 |
msgid "License status"
|
1396 |
+
msgstr "Lizenz Status"
|
1397 |
|
1398 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
|
1399 |
msgid "ACTIVE"
|
1400 |
msgstr "Aktiv"
|
1401 |
|
1402 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
|
1403 |
msgid "you are receiving updates"
|
1404 |
+
msgstr "Du erhälst Updates"
|
1405 |
|
1406 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
|
1407 |
msgid "EXPIRED"
|
1408 |
msgstr "ABGELAUFEN"
|
1409 |
|
1410 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
|
1411 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
|
1412 |
msgid "you are <strong>not</strong> receiving updates."
|
1413 |
msgstr "Du erhältst <strong>keine</strong> Updates."
|
1414 |
|
1415 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
|
1416 |
msgid "INACTIVE"
|
1417 |
msgstr "Nicht Aktiv"
|
1418 |
|
1419 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:35
|
1420 |
msgid "Toggle license status"
|
1421 |
+
msgstr "Lizenz Status umschalten"
|
1422 |
|
1423 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:39
|
1424 |
msgid "Deactivate License"
|
1425 |
msgstr "Deaktiviere Lizenz"
|
1426 |
|
1427 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:40
|
1428 |
msgid ""
|
1429 |
"(deactivate your license so you can activate it on another WordPress site)"
|
1430 |
+
msgstr "(deaktiviere deine Lizenz um sie auf einer anderen Wordpress Seite zu nutzen)"
|
1431 |
|
1432 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:44
|
1433 |
msgid "Activate License"
|
1434 |
msgstr "Aktiviere Lizenz"
|
1435 |
|
1436 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:46
|
1437 |
msgid "Please enter a license key in the field below first."
|
1438 |
+
msgstr "Bitte trage vorher einen Lizenz Schlüssel in das Feld darunter ein."
|
1439 |
|
1440 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:54
|
1441 |
msgid "License Key"
|
1442 |
msgstr "Lizenz Schlüssel"
|
1443 |
|
1444 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:56
|
1445 |
msgid "Paste your license key here, as found in the email receipt."
|
1446 |
+
msgstr "Füge deinen Lizenz-Key hier ein, den du per Email erhalten hast."
|
1447 |
|
1448 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:78
|
1449 |
msgid "Your %s license will expire on %s."
|
1450 |
+
msgstr "Deine %s Lizenz wird am %s verfallen."
|
1451 |
|
1452 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:82
|
1453 |
msgid "%sRenew your license now%s."
|
1454 |
msgstr "%sErneuere deine Lizenz jetzt%s."
|
1455 |
|
1456 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:49
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1457 |
msgid "ID"
|
1458 |
msgstr "ID"
|
1459 |
|
1460 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:50
|
|
|
1461 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:462
|
1462 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:498
|
1463 |
msgid "Form"
|
1464 |
msgstr "Formulare"
|
1465 |
|
1466 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:51
|
1467 |
msgid "Shortcode"
|
1468 |
msgstr "Shortcode"
|
1469 |
|
1470 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:52
|
1471 |
msgid "List(s)"
|
1472 |
msgstr "Liste(n)"
|
1473 |
|
1474 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:53
|
1475 |
msgid "Last edited"
|
1476 |
msgstr "Zuletzt bearbeitet"
|
1477 |
|
1478 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:104
|
1479 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:108
|
1480 |
msgid "Edit Form"
|
1481 |
msgstr "Formular editieren"
|
1482 |
|
1483 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:105
|
1484 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:290
|
1485 |
msgid "Delete"
|
1486 |
msgstr "Löschen"
|
1487 |
|
1488 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
|
1489 |
msgid "No MailChimp list(s) selected yet."
|
1490 |
+
msgstr "Noch keine MailChimp Liste(n) ausgewählt."
|
1491 |
|
1492 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
|
1493 |
msgid "You have not created any sign-up forms yet. Time to do so!"
|
1494 |
msgstr "Du hast noch kein Registrierungs-Formular erstellt. Es ist nun Zeit dafür!"
|
1495 |
|
1500 |
|
1501 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
|
1502 |
msgid "Log Items"
|
1503 |
+
msgstr "Log Nachrichten"
|
1504 |
|
1505 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
|
1506 |
msgid "Email"
|
1512 |
|
1513 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
|
1514 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
|
|
|
1515 |
msgid "Success"
|
1516 |
msgstr "Erfolgreich"
|
1517 |
|
1531 |
msgid "Log items deleted."
|
1532 |
msgstr "Logeintrag gelöscht."
|
1533 |
|
1534 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
|
1535 |
+
msgid "Registration"
|
1536 |
+
msgstr "Registrierung"
|
1537 |
+
|
1538 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
|
1539 |
msgid "Top Bar"
|
1540 |
msgstr "Top Bar"
|
1541 |
|
1542 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
|
1543 |
msgid "MultiSite registration"
|
1544 |
msgstr "MultiSite-Registrierung"
|
1545 |
|
1546 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
|
1547 |
msgid "Contact Form 7"
|
1548 |
msgstr "Contact Form 7"
|
1549 |
|
1550 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
|
1551 |
msgid "bbPress: New Topic"
|
1552 |
msgstr "bbPress: Neues Thema"
|
1553 |
|
1554 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
|
1555 |
msgid "bbPress: New Reply"
|
1556 |
msgstr "bbPress: Neue Antwort"
|
1557 |
|
1558 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
|
1559 |
msgid "Other Form"
|
1560 |
msgstr "Anderes Formular"
|
1561 |
|
1562 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
|
1563 |
msgid "No subscribe requests found."
|
1564 |
+
msgstr "Keine Anmelde Anfragen gefunden."
|
1565 |
|
1566 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
|
1567 |
msgid "All"
|
1568 |
msgstr "Alle"
|
1569 |
|
1570 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
|
1571 |
msgid "Checkbox"
|
1572 |
msgstr "Checkbox"
|
1573 |
|
1574 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
|
1575 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
|
|
|
|
|
|
|
|
|
|
|
1576 |
msgid "Order"
|
1577 |
msgstr "Sortierung"
|
1578 |
|
1579 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
|
1580 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
|
1581 |
msgid "Checkout"
|
1582 |
msgstr "Zur Kasse"
|
1583 |
|
1584 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1585 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
|
1586 |
msgid "Comment"
|
1587 |
msgstr "Kommentar"
|
1588 |
|
1589 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1590 |
msgid "deleted"
|
1591 |
msgstr "gelöscht"
|
1592 |
|
1608 |
|
1609 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
|
1610 |
msgid "Send an email copy of the form data?"
|
1611 |
+
msgstr "Sende eine E-Mail Kopie der Formulardaten?"
|
1612 |
|
1613 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
|
1614 |
msgid ""
|
1618 |
|
1619 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
|
1620 |
msgid "Send the copy to this email:"
|
1621 |
+
msgstr "Sende die Kopie an diese E-Mail:"
|
1622 |
|
1623 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
|
1624 |
msgid "Messages"
|
1625 |
msgstr "Nachrichten"
|
1626 |
|
1627 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:190
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1628 |
msgid "Other errors"
|
1629 |
msgstr "Andere Fehler"
|
1630 |
|
1631 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
|
1632 |
+
msgid "Submit button"
|
1633 |
+
msgstr "Absenden Button"
|
1634 |
+
|
1635 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1636 |
+
msgid "Subscribe / unsubscribe action"
|
1637 |
+
msgstr "Abonnieren / Abmelden Aktion"
|
1638 |
+
|
1639 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1640 |
msgid "Form usage"
|
1641 |
msgstr "Formular-Nutzung"
|
1642 |
|
1650 |
msgid ""
|
1651 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1652 |
"forms."
|
1653 |
+
msgstr "Benutze %s in deinem Contact Form 7 Markup um eine Abonnier-Checkbox deinen CF7 Formularen hinzuzufügen."
|
1654 |
|
1655 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
|
1656 |
msgid "Custom label texts"
|
1657 |
+
msgstr "Benutzerdefinierte Beschriftungs Texte"
|
1658 |
|
1659 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
|
1660 |
msgid ""
|
1661 |
"Override the default checkbox label text for any given checkbox using the "
|
1662 |
"fields below."
|
1663 |
+
msgstr "Überschreibe die Standard Checkbox Beschriftung für alle Checkboxen, mit dem Feld unterhalb."
|
1664 |
|
1665 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
|
1666 |
msgid "Forms & Settings"
|
1672 |
|
1673 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
|
1674 |
msgid "License & API Settings"
|
1675 |
+
msgstr "Lizenz und API Einstellungen"
|
1676 |
|
1677 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
|
1678 |
msgid "No lists were found in your MailChimp account."
|
1679 |
+
msgstr "Es wurden keine Listen in deinem MailChimp Account gefunden."
|
1680 |
|
1681 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
|
|
|
|
|
|
|
|
|
1682 |
msgid ""
|
1683 |
"Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
|
1684 |
+
"email us directly at <a href=\"%s\">support@mc4wp.com</a>."
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1688 |
+
msgid ""
|
1689 |
+
"Please use the same email address as you used when purchasing the plugin."
|
1690 |
+
msgstr "Bitte verwende die gleiche E-Mail Adresse, die du beim Kauf dieses Plugins verwendet hast."
|
1691 |
|
1692 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1693 |
msgid "Use the fields below to create custom styling rules for your forms."
|
1694 |
msgstr "Benutze diese Felder, um benutzerdefinierte Stilregeln für deine Formulare zu definieren."
|
1695 |
|
1696 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:16
|
1697 |
+
msgid ""
|
1698 |
+
"Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
|
1699 |
+
"href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
|
1700 |
+
"form</a> in general."
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
|
1704 |
+
msgid ""
|
1705 |
+
"You are not loading your custom stylesheet at this moment. To apply these "
|
1706 |
+
"styles on your site, select \"load custom form styles\" in the <a "
|
1707 |
+
"href=\"%s\">MailChimp for WordPress form settings</a>."
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:30
|
1711 |
msgid "Select form to build styles for:"
|
1712 |
msgstr "Wähle das Formular für das du Styles erstellen willst:"
|
1713 |
|
1714 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
|
1715 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
|
1716 |
msgid "Create at least one form first."
|
1717 |
msgstr "Erstelle zuerst mindestens ein Formular."
|
1718 |
|
1719 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
|
1720 |
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1721 |
msgstr "Du musst JavaScript aktivieren, um eine Vorschau zu erhalten!"
|
1722 |
|
1723 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1724 |
+
msgid "Form container style"
|
1725 |
+
msgstr "Formular-Container Style"
|
1726 |
+
|
1727 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1728 |
+
msgid "Form width"
|
1729 |
+
msgstr "Formularbreite"
|
1730 |
+
|
1731 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1732 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1733 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1734 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1735 |
+
msgid "px or %"
|
1736 |
+
msgstr "px oder %"
|
1737 |
+
|
1738 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1739 |
+
msgid "Text alignment"
|
1740 |
+
msgstr "Textausrichtung"
|
1741 |
+
|
1742 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1743 |
+
msgid "Choose alignment"
|
1744 |
+
msgstr "Ausrichtung wählen"
|
1745 |
+
|
1746 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1747 |
+
msgid "Left"
|
1748 |
+
msgstr "Links"
|
1749 |
+
|
1750 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1751 |
+
msgid "Center"
|
1752 |
+
msgstr "Zentriert"
|
1753 |
+
|
1754 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1755 |
+
msgid "Right"
|
1756 |
+
msgstr "Rechts"
|
1757 |
+
|
1758 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1759 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1760 |
+
msgid "Background color"
|
1761 |
+
msgstr "Hintergrundfarbe"
|
1762 |
+
|
1763 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1764 |
+
msgid "Padding"
|
1765 |
+
msgstr "Innenabstand"
|
1766 |
+
|
1767 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
|
1768 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1769 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1770 |
+
msgid "Border color"
|
1771 |
+
msgstr "Rahmenfarbe"
|
1772 |
+
|
1773 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1774 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1775 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1776 |
+
msgid "Border width"
|
1777 |
+
msgstr "Rahmenbreite"
|
1778 |
+
|
1779 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1780 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1781 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1782 |
+
msgid "Text color"
|
1783 |
+
msgstr "Schriftfarbe"
|
1784 |
+
|
1785 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1786 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1787 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1788 |
+
msgid "Text size"
|
1789 |
+
msgstr "Schriftgrösse"
|
1790 |
+
|
1791 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1792 |
+
msgid "Background image"
|
1793 |
+
msgstr "Hintergrundbild"
|
1794 |
+
|
1795 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1796 |
+
msgid "Label styles"
|
1797 |
+
msgstr "Label Styles"
|
1798 |
+
|
1799 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1800 |
+
msgid "Label width"
|
1801 |
+
msgstr "Labelbreite"
|
1802 |
+
|
1803 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1804 |
+
msgid "Text style"
|
1805 |
+
msgstr "Text Style"
|
1806 |
+
|
1807 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1808 |
+
msgid "Choose text style.."
|
1809 |
+
msgstr "Wähle Text-Style..."
|
1810 |
+
|
1811 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1812 |
+
msgid "Normal"
|
1813 |
+
msgstr "Normal"
|
1814 |
+
|
1815 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1816 |
+
msgid "Bold"
|
1817 |
+
msgstr "Fett"
|
1818 |
+
|
1819 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1820 |
+
msgid "Italic"
|
1821 |
+
msgstr "Kursiv"
|
1822 |
+
|
1823 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1824 |
+
msgid "Bold & Italic"
|
1825 |
+
msgstr "Fett & kursiv"
|
1826 |
+
|
1827 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1828 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1829 |
+
msgid "Display"
|
1830 |
+
msgstr "Anzeige"
|
1831 |
+
|
1832 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
|
1833 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
|
1834 |
+
msgid "Inline"
|
1835 |
+
msgstr "Inline"
|
1836 |
+
|
1837 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
|
1838 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
|
1839 |
+
msgid "New line"
|
1840 |
+
msgstr "Neue Zeile"
|
1841 |
+
|
1842 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1843 |
+
msgid "Field styles"
|
1844 |
+
msgstr "Feld Styles"
|
1845 |
+
|
1846 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1847 |
+
msgid "Field width"
|
1848 |
+
msgstr "Feldbreite"
|
1849 |
+
|
1850 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1851 |
+
msgid "Field height"
|
1852 |
+
msgstr "Feldhöhe"
|
1853 |
+
|
1854 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1855 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1856 |
+
msgid "Border radius"
|
1857 |
+
msgstr "Rahmenradius"
|
1858 |
+
|
1859 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1860 |
+
msgid "Focus outline"
|
1861 |
+
msgstr "Fokus Umrandung"
|
1862 |
+
|
1863 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
|
1864 |
+
msgid "Button styles"
|
1865 |
+
msgstr "Button Stile"
|
1866 |
+
|
1867 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1868 |
+
msgid "Button width"
|
1869 |
+
msgstr "Button Breite"
|
1870 |
+
|
1871 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1872 |
+
msgid "Button height"
|
1873 |
+
msgstr "Button Höhe"
|
1874 |
+
|
1875 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1876 |
+
msgid "Error and success messages"
|
1877 |
+
msgstr "Fehler- und Erfolgsmeldungen"
|
1878 |
+
|
1879 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1880 |
+
msgid "Success text color"
|
1881 |
+
msgstr "Erfolgs-Schriftfarbe"
|
1882 |
+
|
1883 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1884 |
+
msgid "Error text color"
|
1885 |
+
msgstr "Fehler-Schriftfarbe"
|
1886 |
+
|
1887 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1888 |
+
msgid "Advanced"
|
1889 |
+
msgstr "Erweitert"
|
1890 |
+
|
1891 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1892 |
+
msgid "CSS Selector Prefix"
|
1893 |
+
msgstr "CSS Selektor Prefix"
|
1894 |
+
|
1895 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1896 |
+
msgid ""
|
1897 |
+
"Use this to create a more specific (and thus more \"important\") CSS "
|
1898 |
+
"selector."
|
1899 |
+
msgstr "Verwende dies um einen spezifischeren (und deshalb \"wichtigeren\") CSS Selektor zu erstellen."
|
1900 |
+
|
1901 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1902 |
+
msgid "Manual CSS"
|
1903 |
+
msgstr "Manuelles CSS"
|
1904 |
+
|
1905 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1906 |
+
msgid ""
|
1907 |
+
"The CSS rules you enter here will be appended to the custom stylesheet."
|
1908 |
+
msgstr "Die hier eingegebenen CSS Regeln werden am Ende des Custom Stylesheets angehängt."
|
1909 |
+
|
1910 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1911 |
+
msgid "Copy styles from other form"
|
1912 |
+
msgstr "Kopiere Styles von anderem Formular"
|
1913 |
+
|
1914 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1915 |
+
msgid "Copy Styles"
|
1916 |
+
msgstr "Kopiere Styles"
|
1917 |
+
|
1918 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1919 |
+
msgid ""
|
1920 |
+
"Are you sure you want to copy form styles from another form? This will "
|
1921 |
+
"overwrite current styles for this form."
|
1922 |
+
msgstr "Bist du sicher, dass du die Formular Styles von einem anderen Formular kopieren willst? Dadurch werden die bisherigen Style dieses Formulars überschrieben."
|
1923 |
+
|
1924 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1925 |
msgid "Are you sure you want to delete all custom styles for this form?"
|
1926 |
+
msgstr "Bist du sicher, dass du alle massgefertigten Styles für dieses Formular löschen willst?"
|
1927 |
|
1928 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1929 |
msgid "Delete Form Styles"
|
1930 |
msgstr "Formular-Styles löschen"
|
1931 |
|
1932 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1933 |
+
msgid "Form preview"
|
1934 |
+
msgstr "Formular-Vorschau"
|
|
|
|
|
|
|
|
|
1935 |
|
1936 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1937 |
msgid "Sign-Up Forms"
|
1943 |
|
1944 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1945 |
msgid "General form settings"
|
1946 |
+
msgstr "Allgemeine Formular Einstellungen"
|
1947 |
|
1948 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1949 |
msgid ""
|
1950 |
"If you %screated a custom stylesheet%s and want it to be loaded, select "
|
1951 |
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1952 |
" of the default themes."
|
1953 |
+
msgstr "Wenn du ein %sbenutzerdefiniertes Stylesheet erstellt%s hast und dieses laden möchtest, wähle \"eigenen Formular Stile\". Andernfalls wähle eines der Standard Formular Stile oder eines der Standard Themes."
|
1954 |
|
1955 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1956 |
msgid "Select Color"
|
1962 |
|
1963 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1964 |
msgid "Default MailChimp settings"
|
1965 |
+
msgstr "Standard MailChimp Einstellungen"
|
1966 |
|
1967 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
|
1968 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1969 |
msgid ""
|
1970 |
"The following settings apply to <strong>all</strong> forms but can be "
|
1971 |
"overridden on a per-form basis."
|
1972 |
+
msgstr "Die folgenden Einstellungen gelten für <strong>alle</strong> Formulare, können aber auf Formular Basis überschreiben werden."
|
1973 |
|
1974 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
|
1975 |
msgid "Default Form Settings"
|
1976 |
+
msgstr "Standard Formular Einstellungen"
|
1977 |
+
|
1978 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
|
1979 |
+
msgid ""
|
1980 |
+
"Leave empty for no redirect. Otherwise, use complete (absolute) URLs, "
|
1981 |
+
"including <code>http://</code>."
|
1982 |
+
msgstr "Für eine Weiterleitung bitte die kompletten (absoluten) URLs angeben, inklusive <code>http://</code>, ansonsten leer lassen."
|
1983 |
|
1984 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1985 |
msgid "Default Messages"
|
languages/mailchimp-for-wp-el_GR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-el_GR.po
CHANGED
@@ -1,14 +1,18 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
|
|
|
|
|
|
|
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: MailChimp for WordPress\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
10 |
-
"Last-Translator:
|
11 |
-
"Language-Team: Greek (Greece) (http://www.transifex.com/
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -24,187 +28,252 @@ msgstr ""
|
|
24 |
"X-Poedit-SourceCharset: utf-8\n"
|
25 |
"X-Textdomain-Support: yes\n"
|
26 |
|
27 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
28 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
29 |
msgid "Settings"
|
30 |
-
msgstr ""
|
31 |
|
32 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
33 |
-
#: mailchimp-for-wordpress/includes/
|
34 |
-
msgid "Upgrade to Pro"
|
35 |
-
msgstr ""
|
36 |
|
37 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
45 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
46 |
msgid "Checkboxes"
|
47 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
50 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
51 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
52 |
msgid "Forms"
|
53 |
-
msgstr ""
|
54 |
|
55 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
|
|
|
|
|
|
|
|
|
|
56 |
msgid "This option is only available in MailChimp for WordPress Pro."
|
57 |
-
msgstr ""
|
58 |
|
59 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
60 |
-
#: mailchimp-for-wordpress
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
msgid "Comment form"
|
62 |
-
msgstr ""
|
63 |
|
64 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
65 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
66 |
msgid "Registration form"
|
67 |
-
msgstr ""
|
68 |
|
69 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
70 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
71 |
msgid "MultiSite forms"
|
72 |
-
msgstr ""
|
73 |
|
74 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
75 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
76 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
77 |
msgid "BuddyPress registration"
|
78 |
-
msgstr ""
|
79 |
|
80 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
81 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
82 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
83 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
84 |
msgid "%s checkout"
|
85 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
88 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
89 |
msgid "Renewed MailChimp cache."
|
90 |
-
msgstr ""
|
91 |
|
92 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:
|
93 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
94 |
msgid "Failed to renew MailChimp cache - please try again later."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:398
|
98 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
|
99 |
-
msgid "An EMAIL field. Example: <code>%s</code>"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:404
|
103 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
|
104 |
-
msgid "A submit button. Example: <code>%s</code>"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:404
|
108 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
|
109 |
-
msgid "Sign Up"
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:429
|
113 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
|
114 |
-
msgid "A '%s' field"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: mailchimp-for-wordpress/includes/class-form-request.php:675
|
118 |
-
msgid "Please select at least one list to subscribe to."
|
119 |
-
msgstr ""
|
120 |
|
121 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:
|
122 |
msgid "MailChimp Sign-Up Form"
|
123 |
-
msgstr ""
|
124 |
|
125 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:
|
126 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
127 |
-
msgstr ""
|
128 |
|
129 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:
|
130 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:
|
131 |
msgid "Newsletter"
|
132 |
-
msgstr ""
|
133 |
|
134 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:
|
135 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:
|
136 |
msgid "Title:"
|
137 |
-
msgstr ""
|
138 |
|
139 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:
|
140 |
msgid ""
|
141 |
-
"You can edit your sign-up form in the %
|
142 |
-
"settings
|
143 |
-
msgstr ""
|
144 |
|
145 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
146 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
|
147 |
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
|
|
148 |
msgid "Email address"
|
149 |
-
msgstr ""
|
150 |
|
151 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
152 |
-
#: mailchimp-for-wordpress-pro/includes/
|
|
|
153 |
msgid "Your email address"
|
154 |
-
msgstr ""
|
155 |
|
156 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
157 |
-
#: mailchimp-for-wordpress-pro/includes/
|
|
|
158 |
msgid "Sign up"
|
159 |
-
msgstr ""
|
160 |
|
161 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
162 |
-
#: mailchimp-for-wordpress-pro/includes/
|
163 |
msgid "Sign me up for the newsletter!"
|
164 |
-
msgstr ""
|
165 |
|
166 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
167 |
msgid ""
|
168 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
169 |
"inbox."
|
170 |
-
msgstr ""
|
171 |
|
172 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
173 |
-
#: mailchimp-for-wordpress-pro/includes/
|
174 |
msgid "Oops. Something went wrong. Please try again later."
|
175 |
-
msgstr ""
|
176 |
|
177 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
178 |
-
#: mailchimp-for-wordpress-pro/includes/
|
179 |
msgid "Please provide a valid email address."
|
180 |
-
msgstr ""
|
181 |
|
182 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
183 |
-
#: mailchimp-for-wordpress-pro/includes/
|
184 |
msgid "Given email address is already subscribed, thank you!"
|
185 |
-
msgstr ""
|
186 |
|
187 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
188 |
-
#: mailchimp-for-wordpress-pro/includes/
|
189 |
msgid "Please complete the CAPTCHA."
|
190 |
-
msgstr ""
|
191 |
|
192 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:
|
193 |
-
#: mailchimp-for-wordpress-pro/includes/
|
194 |
msgid "Please fill in the required fields."
|
195 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:
|
198 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
199 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
200 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
201 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
202 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
203 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
204 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
205 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
206 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
207 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:
|
208 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
|
209 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
|
210 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
|
@@ -214,8 +283,9 @@ msgstr ""
|
|
214 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
|
215 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
216 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
|
217 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
218 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
|
|
219 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
|
220 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
|
221 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
|
@@ -223,20 +293,20 @@ msgstr ""
|
|
223 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
224 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
225 |
msgid "Yes"
|
226 |
-
msgstr ""
|
227 |
|
228 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:
|
229 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
230 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
231 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
232 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:27
|
233 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
234 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
235 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
236 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
237 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
238 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
239 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:
|
240 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
|
241 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
|
242 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
|
@@ -246,8 +316,9 @@ msgstr ""
|
|
246 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
|
247 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
248 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
|
249 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
250 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
|
|
251 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
|
252 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
|
253 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
|
@@ -256,83 +327,100 @@ msgstr ""
|
|
256 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
257 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
258 |
msgid "No"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
262 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
263 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
264 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
|
|
|
|
|
|
265 |
msgid "MailChimp for WordPress - Error"
|
266 |
-
msgstr ""
|
267 |
|
268 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
269 |
msgid ""
|
270 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
271 |
"settings</a>."
|
272 |
-
msgstr ""
|
273 |
|
274 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
275 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
|
|
276 |
msgid "This message is only visible to administrators for debugging purposes."
|
277 |
-
msgstr ""
|
278 |
|
279 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
280 |
msgid ""
|
281 |
"The MailChimp server returned the following error message as a response to "
|
282 |
"our sign-up request:"
|
283 |
-
msgstr ""
|
284 |
|
285 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
286 |
msgid "This is the data that was sent to MailChimp:"
|
287 |
-
msgstr ""
|
288 |
|
289 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
290 |
-
#: mailchimp-for-wordpress-pro/includes/class-
|
|
|
291 |
msgid "Email address:"
|
292 |
-
msgstr ""
|
293 |
|
294 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:
|
|
|
295 |
msgid "Merge variables:"
|
296 |
-
msgstr ""
|
297 |
|
298 |
#. Plugin Name of the plugin/theme
|
299 |
msgid "MailChimp for WordPress"
|
300 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
|
302 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
303 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
304 |
msgid "API Settings"
|
305 |
-
msgstr ""
|
306 |
|
307 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
308 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
309 |
msgid "CONNECTED"
|
310 |
-
msgstr ""
|
311 |
|
312 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
313 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
314 |
msgid "NOT CONNECTED"
|
315 |
-
msgstr ""
|
316 |
|
317 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
318 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
319 |
msgid "API Key"
|
320 |
-
msgstr ""
|
321 |
|
322 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
323 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
324 |
msgid "Your MailChimp API key"
|
325 |
-
msgstr ""
|
326 |
|
327 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
328 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
329 |
msgid "Get your API key here."
|
330 |
-
msgstr ""
|
331 |
|
332 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
333 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
334 |
msgid "MailChimp Data"
|
335 |
-
msgstr ""
|
336 |
|
337 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
338 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
@@ -340,1097 +428,1170 @@ msgid ""
|
|
340 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
341 |
"your MailChimp lists, please use the following button to renew your cached "
|
342 |
"data."
|
343 |
-
msgstr ""
|
344 |
|
345 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
346 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
347 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
348 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
349 |
msgid "Renew MailChimp lists"
|
350 |
-
msgstr ""
|
351 |
|
352 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
353 |
msgid "No lists were found in your MailChimp account"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
357 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
358 |
-
msgid "Checkbox Settings"
|
359 |
-
msgstr ""
|
360 |
|
361 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
362 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
363 |
msgid ""
|
364 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
365 |
"checkbox to."
|
366 |
-
msgstr ""
|
367 |
|
368 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
369 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
370 |
msgid "MailChimp settings for checkboxes"
|
371 |
-
msgstr ""
|
372 |
|
373 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
374 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
375 |
msgid ""
|
376 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
377 |
" subscribe people to."
|
378 |
-
msgstr ""
|
379 |
|
380 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
381 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
382 |
msgid "MailChimp Lists"
|
383 |
-
msgstr ""
|
384 |
|
385 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
386 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
387 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
|
388 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
|
389 |
-
msgid "No lists found, %
|
390 |
-
msgstr ""
|
391 |
|
392 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
|
393 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
|
394 |
msgid ""
|
395 |
"Select the list(s) to which people who check the checkbox should be "
|
396 |
"subscribed."
|
397 |
-
msgstr ""
|
398 |
|
399 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
400 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
401 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
|
402 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
|
403 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
404 |
msgid "Double opt-in?"
|
405 |
-
msgstr ""
|
406 |
|
407 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
|
408 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
409 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
|
410 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
|
411 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
|
412 |
msgid ""
|
413 |
"Select \"yes\" if you want people to confirm their email address before "
|
414 |
"being subscribed (recommended)"
|
415 |
-
msgstr ""
|
416 |
|
417 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
418 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
419 |
msgid "Checkbox settings"
|
420 |
-
msgstr ""
|
421 |
|
422 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
423 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
424 |
msgid "Add the checkbox to these forms"
|
425 |
-
msgstr ""
|
426 |
|
427 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
428 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
429 |
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
430 |
-
msgstr ""
|
431 |
|
432 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
433 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
434 |
msgid "Checkbox label text"
|
435 |
-
msgstr ""
|
436 |
|
437 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
438 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
439 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
440 |
msgid "HTML tags like %s are allowed in the label text."
|
441 |
-
msgstr ""
|
442 |
|
443 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
444 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
445 |
msgid "Pre-check the checkbox?"
|
446 |
-
msgstr ""
|
447 |
|
448 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
449 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
450 |
msgid "Load some default CSS?"
|
451 |
-
msgstr ""
|
452 |
|
453 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
454 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
455 |
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
456 |
-
msgstr ""
|
457 |
|
458 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
|
459 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
460 |
msgid "WooCommerce checkbox position"
|
461 |
-
msgstr ""
|
462 |
|
463 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
|
464 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
465 |
msgid "After the billing details"
|
466 |
-
msgstr ""
|
467 |
|
468 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
|
469 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
470 |
msgid "After the additional information"
|
471 |
-
msgstr ""
|
472 |
|
473 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
|
474 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
475 |
msgid ""
|
476 |
"Choose the position for the checkbox in your WooCommerce checkout form."
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
480 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
|
481 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
482 |
-
msgid "Form Settings"
|
483 |
-
msgstr ""
|
484 |
|
485 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
486 |
msgid ""
|
487 |
"To use the MailChimp sign-up form, configure the form below and then either "
|
488 |
"paste %s in the content of a post or page or use the widget."
|
489 |
-
msgstr ""
|
490 |
|
491 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
492 |
msgid "Required form settings"
|
493 |
-
msgstr ""
|
494 |
|
495 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
496 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
497 |
msgid "Load form styles (CSS)?"
|
498 |
-
msgstr ""
|
499 |
|
500 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
501 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
502 |
msgid "Yes, load basic form styles"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
506 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
507 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
508 |
-
msgid "(PRO ONLY)"
|
509 |
-
msgstr ""
|
510 |
|
511 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
512 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
513 |
msgid "Yes, load my custom form styles"
|
514 |
-
msgstr ""
|
515 |
|
516 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
517 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
518 |
msgid "Yes, load default form theme"
|
519 |
-
msgstr ""
|
520 |
|
521 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
522 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
523 |
msgid "Light Theme"
|
524 |
-
msgstr ""
|
525 |
|
526 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
527 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
528 |
msgid "Red Theme"
|
529 |
-
msgstr ""
|
530 |
|
531 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
532 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
533 |
msgid "Green Theme"
|
534 |
-
msgstr ""
|
535 |
|
536 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
537 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
538 |
msgid "Blue Theme"
|
539 |
-
msgstr ""
|
540 |
|
541 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
542 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
543 |
msgid "Dark Theme"
|
544 |
-
msgstr ""
|
545 |
|
546 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
547 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
548 |
msgid "Custom Color Theme"
|
549 |
-
msgstr ""
|
550 |
|
551 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
552 |
msgid ""
|
553 |
"If you want to load some default CSS styles, select \"basic formatting "
|
554 |
"styles\" or choose one of the color themes"
|
555 |
-
msgstr ""
|
556 |
|
557 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
558 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
559 |
msgid "Lists this form subscribes to"
|
560 |
-
msgstr ""
|
561 |
|
562 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
563 |
msgid ""
|
564 |
"Select the list(s) to which people who submit this form should be "
|
565 |
"subscribed."
|
566 |
-
msgstr ""
|
567 |
|
568 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:69
|
569 |
msgid "Form mark-up"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:75
|
573 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
|
574 |
-
msgid "Your form is missing the following (required) form fields:"
|
575 |
-
msgstr ""
|
576 |
|
577 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
578 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
579 |
msgid ""
|
580 |
"Use the shortcode %s to display this form inside a post, page or text "
|
581 |
"widget."
|
582 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
583 |
|
584 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
585 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
586 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
587 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
588 |
msgid "Send Welcome Email?"
|
589 |
-
msgstr ""
|
590 |
|
591 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
592 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
593 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
|
594 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
|
595 |
msgid ""
|
596 |
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
597 |
"succeeds (only when double opt-in is disabled)."
|
598 |
-
msgstr ""
|
599 |
|
600 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
601 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
|
|
602 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
603 |
msgid "Update existing subscribers?"
|
604 |
-
msgstr ""
|
605 |
|
606 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
607 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
608 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
|
609 |
msgid ""
|
610 |
"Select \"yes\" if you want to update existing subscribers (instead of "
|
611 |
"showing the \"already subscribed\" message)."
|
612 |
-
msgstr ""
|
613 |
|
614 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
615 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
|
616 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
|
617 |
msgid "Replace interest groups?"
|
618 |
-
msgstr ""
|
619 |
|
620 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
621 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
622 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
|
623 |
msgid ""
|
624 |
"Select \"yes\" if you want to replace the interest groups with the groups "
|
625 |
"provided instead of adding the provided groups to the member's interest "
|
626 |
"groups (only when updating a subscriber)."
|
627 |
-
msgstr ""
|
628 |
|
629 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
630 |
msgid "Form Settings & Messages"
|
631 |
-
msgstr ""
|
632 |
|
633 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
634 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
635 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
636 |
msgid "Enable AJAX form submission?"
|
637 |
-
msgstr ""
|
638 |
|
639 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
640 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
641 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
642 |
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
643 |
-
msgstr ""
|
644 |
|
645 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
646 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
647 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
|
648 |
msgid "Hide form after a successful sign-up?"
|
649 |
-
msgstr ""
|
650 |
|
651 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
652 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
|
653 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
|
654 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
655 |
-
msgstr ""
|
656 |
|
657 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
658 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
|
659 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
|
660 |
msgid "Redirect to URL after successful sign-ups"
|
661 |
-
msgstr ""
|
662 |
|
663 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
664 |
msgid "Example: %s"
|
665 |
-
msgstr ""
|
666 |
|
667 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
668 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
|
669 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
|
670 |
msgid ""
|
671 |
-
"Leave empty or enter 0 for no
|
672 |
-
"including <code>http://</code
|
673 |
-
msgstr ""
|
674 |
|
675 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
676 |
-
|
677 |
-
|
|
|
678 |
|
679 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
680 |
-
|
681 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
|
683 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:205
|
684 |
-
|
685 |
-
|
|
|
|
|
686 |
|
687 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
688 |
-
|
689 |
-
|
|
|
|
|
690 |
|
691 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
692 |
-
|
693 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
696 |
-
|
697 |
-
|
|
|
|
|
|
|
|
|
698 |
|
699 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
700 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:
|
701 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
702 |
-
msgid "
|
703 |
-
msgstr ""
|
704 |
|
705 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
706 |
-
|
707 |
-
|
|
|
708 |
|
709 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
710 |
-
|
711 |
-
|
712 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
|
714 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
|
|
|
|
715 |
msgid ""
|
716 |
-
"
|
717 |
-
"
|
718 |
-
"
|
719 |
-
msgstr ""
|
720 |
|
721 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:243
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
msgid "Form Styling"
|
723 |
-
msgstr ""
|
724 |
|
725 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
726 |
msgid "Alter the visual appearance of the form by applying CSS rules to %s."
|
727 |
-
msgstr ""
|
728 |
|
729 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
730 |
msgid ""
|
731 |
"You can add the CSS rules to your theme stylesheet using the <a "
|
732 |
-
"href=\"%s\">Theme Editor</a> or by
|
733 |
-
"
|
734 |
-
msgstr ""
|
735 |
|
736 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
737 |
msgid ""
|
738 |
"The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
|
739 |
"selectors you can use to target the different form elements."
|
740 |
-
msgstr ""
|
741 |
|
742 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
743 |
msgid ""
|
744 |
-
"If you need an easier way to style your forms, <a
|
745 |
-
"MailChimp for WordPress Pro</a
|
746 |
-
"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
750 |
-
|
751 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
752 |
|
753 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
754 |
-
#: mailchimp-for-wordpress-pro/includes/admin
|
755 |
-
msgid "
|
756 |
-
msgstr ""
|
757 |
|
758 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
759 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
760 |
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
761 |
-
msgstr ""
|
762 |
|
763 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
764 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
765 |
msgid "Replaced with the form response (error or success messages)."
|
766 |
-
msgstr ""
|
767 |
|
768 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
769 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
770 |
msgid "Replaced with a captcha field."
|
771 |
-
msgstr ""
|
772 |
|
773 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
774 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
775 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
776 |
-
msgstr ""
|
777 |
|
778 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
779 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
780 |
msgid "Replaced with the current site language, eg: %s"
|
781 |
-
msgstr ""
|
782 |
|
783 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
784 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
785 |
msgid "Replaced with the visitor's IP address"
|
786 |
-
msgstr ""
|
787 |
|
788 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
789 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
790 |
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
791 |
-
msgstr ""
|
792 |
|
793 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
794 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
795 |
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
796 |
-
msgstr ""
|
797 |
|
798 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
799 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
800 |
msgid ""
|
801 |
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
802 |
"in user)"
|
803 |
-
msgstr ""
|
804 |
|
805 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
806 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
807 |
msgid "First name of the current user"
|
808 |
-
msgstr ""
|
809 |
|
810 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
811 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
812 |
msgid "Last name of the current user"
|
813 |
-
msgstr ""
|
814 |
|
815 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
816 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
817 |
msgid "Current user ID"
|
818 |
-
msgstr ""
|
819 |
|
820 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:
|
821 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:
|
822 |
msgid "Current URL"
|
823 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
824 |
|
825 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
826 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
827 |
msgid "Add a new field"
|
828 |
-
msgstr ""
|
829 |
|
830 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
831 |
msgid "Use the tool below to generate the HTML for your form fields."
|
832 |
-
msgstr ""
|
833 |
|
834 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
|
835 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
836 |
msgid "Select MailChimp field.."
|
837 |
-
msgstr ""
|
838 |
|
839 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
|
840 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:36
|
841 |
msgid "Submit Button"
|
842 |
-
msgstr ""
|
843 |
|
844 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
845 |
-
|
846 |
-
|
847 |
-
msgstr ""
|
848 |
|
849 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
850 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
851 |
-
msgid "
|
852 |
-
msgstr ""
|
853 |
|
854 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
855 |
-
#: mailchimp-for-wordpress/includes/views/
|
856 |
-
|
857 |
-
|
858 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
859 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:55
|
860 |
-
msgid "(optional)"
|
861 |
-
msgstr ""
|
862 |
|
863 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
864 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
865 |
msgid "Placeholder"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:38
|
869 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:55
|
870 |
-
msgid "Initial value"
|
871 |
-
msgstr ""
|
872 |
|
873 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
874 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
875 |
msgid "Labels"
|
876 |
-
msgstr ""
|
877 |
|
878 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
879 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
880 |
msgid "(leave empty to hide)"
|
881 |
-
msgstr ""
|
882 |
|
883 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
884 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
885 |
msgid "Wrap in paragraph %s tags?"
|
886 |
-
msgstr ""
|
887 |
|
888 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
889 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
890 |
msgid "Required field?"
|
891 |
-
msgstr ""
|
892 |
|
893 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
894 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
895 |
msgid "Add to form"
|
896 |
-
msgstr ""
|
897 |
|
898 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
899 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
900 |
msgid "Generated HTML"
|
901 |
-
msgstr ""
|
902 |
|
903 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:
|
904 |
msgid "Select at least one list first."
|
905 |
-
msgstr ""
|
906 |
|
907 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:
|
908 |
msgid ""
|
909 |
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
910 |
"translated in your language or do you spot errors with the current "
|
911 |
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
912 |
"translation project and click \"help translate\"</a>."
|
913 |
-
msgstr ""
|
914 |
|
915 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:
|
916 |
msgid ""
|
917 |
-
"Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress
|
918 |
-
"
|
919 |
-
msgstr ""
|
920 |
|
921 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:
|
922 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:
|
923 |
msgid ""
|
924 |
"This plugin is not developed by or affiliated with MailChimp in any way."
|
925 |
-
msgstr ""
|
926 |
|
927 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
928 |
-
msgid "Looking for
|
929 |
-
msgstr ""
|
930 |
|
931 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
932 |
msgid ""
|
933 |
-
"Make sure to look at the <a href=\"%s\">
|
934 |
-
"
|
935 |
-
|
|
|
936 |
|
937 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:
|
938 |
-
msgid ""
|
939 |
-
|
940 |
-
"version</a>."
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
944 |
-
msgid "Show a token of your appreciation"
|
945 |
-
msgstr ""
|
946 |
|
947 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
948 |
-
msgid "Upgrade to MailChimp for WordPress Pro"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
952 |
msgid "Leave a %s plugin review on WordPress.org"
|
953 |
-
msgstr ""
|
954 |
|
955 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:
|
956 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
957 |
-
msgstr ""
|
958 |
|
959 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:
|
960 |
msgid "Tweet about MailChimp for WordPress"
|
961 |
-
msgstr ""
|
962 |
|
963 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:
|
964 |
msgid ""
|
965 |
"Review the plugin on your blog and link to <a href=\"%s\">the plugin "
|
966 |
"page</a>."
|
967 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
968 |
|
969 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:
|
970 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
971 |
-
msgstr ""
|
972 |
|
973 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-
|
974 |
-
msgid "
|
975 |
-
|
|
|
976 |
|
977 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
978 |
-
msgid ""
|
979 |
-
"
|
980 |
-
msgstr ""
|
981 |
|
982 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:
|
983 |
-
msgid ""
|
984 |
-
"
|
985 |
-
"styling, more default themes, detailed statistics and priority support."
|
986 |
-
msgstr ""
|
987 |
|
988 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:
|
989 |
-
msgid "
|
990 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
991 |
|
992 |
-
#: mailchimp-for-wordpress
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
msgid "Documentation"
|
994 |
-
msgstr ""
|
995 |
|
996 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
997 |
msgid "Save Form"
|
998 |
-
msgstr ""
|
999 |
|
1000 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1001 |
msgid "Update Form"
|
1002 |
-
msgstr ""
|
1003 |
|
1004 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1005 |
msgid "Back to general form settings"
|
1006 |
-
msgstr ""
|
1007 |
|
1008 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1009 |
msgid "Form updated."
|
1010 |
-
msgstr ""
|
1011 |
|
1012 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1013 |
msgid "Form saved."
|
1014 |
-
msgstr ""
|
1015 |
|
1016 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1017 |
msgid "Optional Settings"
|
1018 |
-
msgstr ""
|
1019 |
|
1020 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1021 |
-
msgid "
|
1022 |
-
msgstr ""
|
1023 |
|
1024 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1025 |
msgid "MailChimp & License"
|
1026 |
-
msgstr ""
|
1027 |
|
1028 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
|
|
1029 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
|
1030 |
msgid "Reports"
|
1031 |
-
msgstr ""
|
1032 |
|
1033 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1034 |
msgid ""
|
1035 |
"Please make sure the plugin is connected to MailChimp. <a "
|
1036 |
"href=\"%s\">Provide a valid API key.</a>"
|
1037 |
-
msgstr ""
|
1038 |
-
|
1039 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
|
1040 |
-
msgid "End date can't be before the start date"
|
1041 |
-
msgstr ""
|
1042 |
|
1043 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1044 |
msgid ""
|
1045 |
"You disabled logging using the %s filter. Re-enable it to use the Reports "
|
1046 |
"page."
|
1047 |
-
msgstr ""
|
1048 |
|
1049 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:
|
1050 |
msgid ""
|
1051 |
"<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
|
1052 |
-
"settings you
|
1053 |
-
"it now</a
|
1054 |
-
msgstr ""
|
1055 |
|
1056 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-
|
|
|
|
|
|
|
|
|
1057 |
msgid ""
|
1058 |
"Couldn't create the stylesheet. Manually add the generated CSS to your theme"
|
1059 |
-
" stylesheet
|
1060 |
-
msgstr ""
|
1061 |
|
1062 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:
|
1063 |
msgid "%sShow generated CSS%s"
|
1064 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
1065 |
|
1066 |
-
#: mailchimp-for-wordpress-pro/includes/
|
|
|
|
|
|
|
|
|
1067 |
msgid ""
|
1068 |
-
"
|
1069 |
-
"
|
1070 |
-
msgstr ""
|
1071 |
|
1072 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1073 |
-
msgid "
|
1074 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1075 |
|
1076 |
-
#: mailchimp-for-wordpress-pro/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1077 |
msgid "I know. Don't bug me."
|
1078 |
-
msgstr ""
|
1079 |
|
1080 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1081 |
msgid ""
|
1082 |
"<b>Warning!</b> You're blocking external requests which means you won't be "
|
1083 |
"able to get %s updates. Please add %s to %s."
|
1084 |
-
msgstr ""
|
1085 |
|
1086 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1087 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1088 |
-
msgstr ""
|
1089 |
|
1090 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1091 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
1092 |
-
msgstr ""
|
1093 |
|
1094 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1095 |
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
1096 |
-
msgstr ""
|
1097 |
|
1098 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1099 |
msgid ""
|
1100 |
"<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
|
1101 |
" it?</a>"
|
1102 |
-
msgstr ""
|
1103 |
|
1104 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1105 |
msgid ""
|
1106 |
"You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
|
1107 |
"<a href=\"%s\">upgrade your license</a> to use it on this site."
|
1108 |
-
msgstr ""
|
1109 |
|
1110 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1111 |
msgid ""
|
1112 |
"Your license has expired. You must <a href=\"%s\">renew your license</a> if "
|
1113 |
"you want to use it again."
|
1114 |
-
msgstr ""
|
1115 |
|
1116 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1117 |
msgid "Failed to activate your license, your license key seems to be invalid."
|
1118 |
-
msgstr ""
|
1119 |
|
1120 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1121 |
msgid "Your %s license has been deactivated."
|
1122 |
-
msgstr ""
|
1123 |
|
1124 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1125 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1126 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1127 |
msgid ""
|
1128 |
"Your plugin license has expired. You will no longer have access to plugin "
|
1129 |
"updates unless you <a href=\"%s\">renew your license</a>."
|
1130 |
-
msgstr ""
|
1131 |
|
1132 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1133 |
msgid "Failed to deactivate your %s license."
|
1134 |
-
msgstr ""
|
1135 |
|
1136 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1137 |
msgid "Request error: \"%s\""
|
1138 |
-
msgstr ""
|
1139 |
|
1140 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1141 |
msgid "%s: License Settings"
|
1142 |
-
msgstr ""
|
1143 |
|
1144 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1145 |
msgid ""
|
1146 |
"%s is network activated, please contact your site administrator to manage "
|
1147 |
"the license."
|
1148 |
-
msgstr ""
|
1149 |
|
1150 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1151 |
msgid ""
|
1152 |
"%s failed to check for updates because of the following error: <em>%s</em>"
|
1153 |
-
msgstr ""
|
1154 |
|
1155 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1156 |
msgid ""
|
1157 |
-
"This site has not been activated properly on
|
1158 |
-
"
|
1159 |
-
"
|
1160 |
-
msgstr ""
|
1161 |
|
1162 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1163 |
msgid "License status"
|
1164 |
-
msgstr ""
|
1165 |
|
1166 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1167 |
msgid "ACTIVE"
|
1168 |
-
msgstr ""
|
1169 |
|
1170 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1171 |
msgid "you are receiving updates"
|
1172 |
-
msgstr ""
|
1173 |
|
1174 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1175 |
msgid "EXPIRED"
|
1176 |
-
msgstr ""
|
1177 |
|
1178 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1179 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1180 |
msgid "you are <strong>not</strong> receiving updates."
|
1181 |
-
msgstr ""
|
1182 |
|
1183 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1184 |
msgid "INACTIVE"
|
1185 |
-
msgstr ""
|
1186 |
|
1187 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1188 |
msgid "Toggle license status"
|
1189 |
-
msgstr ""
|
1190 |
|
1191 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1192 |
msgid "Deactivate License"
|
1193 |
-
msgstr ""
|
1194 |
|
1195 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1196 |
msgid ""
|
1197 |
"(deactivate your license so you can activate it on another WordPress site)"
|
1198 |
-
msgstr ""
|
1199 |
|
1200 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1201 |
msgid "Activate License"
|
1202 |
-
msgstr ""
|
1203 |
|
1204 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1205 |
msgid "Please enter a license key in the field below first."
|
1206 |
-
msgstr ""
|
1207 |
|
1208 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1209 |
msgid "License Key"
|
1210 |
-
msgstr ""
|
1211 |
|
1212 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1213 |
msgid "Paste your license key here, as found in the email receipt."
|
1214 |
-
msgstr ""
|
1215 |
|
1216 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1217 |
-
msgid "You defined your license key using the %s PHP constant."
|
1218 |
-
msgstr ""
|
1219 |
-
|
1220 |
-
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
|
1221 |
msgid "Your %s license will expire on %s."
|
1222 |
-
msgstr ""
|
1223 |
|
1224 |
-
#: mailchimp-for-wordpress-pro/includes/
|
1225 |
msgid "%sRenew your license now%s."
|
1226 |
-
msgstr ""
|
1227 |
|
1228 |
-
#: mailchimp-for-wordpress-pro/includes/class-
|
1229 |
-
msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
|
1230 |
-
msgstr ""
|
1231 |
-
|
1232 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-manager.php:255
|
1233 |
-
msgid ""
|
1234 |
-
"<strong>Error:</strong> Sign-up form not found. Please check if you used the"
|
1235 |
-
" correct form ID."
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
|
1239 |
-
msgid "New MailChimp Sign-Up"
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
|
1243 |
-
msgid "New Sign-Up"
|
1244 |
-
msgstr ""
|
1245 |
-
|
1246 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
|
1247 |
-
msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
|
1251 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
|
1252 |
-
msgid "List"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
|
1256 |
-
msgid "Other fields"
|
1257 |
-
msgstr ""
|
1258 |
-
|
1259 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
|
1260 |
-
msgid ""
|
1261 |
-
"Note that you've enabled double opt-in for the \"%s\" form. The user won't "
|
1262 |
-
"be added to the selected MailChimp lists until they confirm their email "
|
1263 |
-
"address."
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
|
1267 |
-
msgid "This email was auto-sent by the MailChimp for WordPress plugin."
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
|
1271 |
-
msgid "IP Address"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1275 |
-
msgid "MailChimp for WP Form"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:21
|
1279 |
-
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
1280 |
-
msgstr ""
|
1281 |
-
|
1282 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:43
|
1283 |
-
msgid ""
|
1284 |
-
"Please select the sign-up form you'd like to show here in the <a "
|
1285 |
-
"href=\"%s\">widget settings</a>."
|
1286 |
-
msgstr ""
|
1287 |
-
|
1288 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:84
|
1289 |
-
msgid "Form:"
|
1290 |
-
msgstr ""
|
1291 |
-
|
1292 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:86
|
1293 |
-
msgid "Select the form to show"
|
1294 |
-
msgstr ""
|
1295 |
-
|
1296 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:94
|
1297 |
-
msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
|
1298 |
-
msgstr ""
|
1299 |
-
|
1300 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:50
|
1301 |
-
msgid ""
|
1302 |
-
"Thank you, your sign-up request was successful! Please check your email "
|
1303 |
-
"inbox to confirm."
|
1304 |
-
msgstr ""
|
1305 |
-
|
1306 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:35
|
1307 |
msgid "ID"
|
1308 |
-
msgstr ""
|
1309 |
|
1310 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1311 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1312 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1313 |
msgid "Form"
|
1314 |
-
msgstr ""
|
1315 |
|
1316 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1317 |
msgid "Shortcode"
|
1318 |
-
msgstr ""
|
1319 |
|
1320 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1321 |
msgid "List(s)"
|
1322 |
-
msgstr ""
|
1323 |
|
1324 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1325 |
msgid "Last edited"
|
1326 |
-
msgstr ""
|
1327 |
|
1328 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1329 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1330 |
msgid "Edit Form"
|
1331 |
-
msgstr ""
|
1332 |
|
1333 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1334 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1335 |
msgid "Delete"
|
1336 |
-
msgstr ""
|
1337 |
|
1338 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1339 |
msgid "No MailChimp list(s) selected yet."
|
1340 |
-
msgstr ""
|
1341 |
|
1342 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:
|
1343 |
msgid "You have not created any sign-up forms yet. Time to do so!"
|
1344 |
-
msgstr ""
|
1345 |
|
1346 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1347 |
-
|
1348 |
-
|
|
|
1349 |
|
1350 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1351 |
-
msgid "
|
1352 |
-
msgstr ""
|
1353 |
|
1354 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1355 |
msgid "Email"
|
1356 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1357 |
|
1358 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1359 |
msgid "Type"
|
1360 |
-
msgstr ""
|
1361 |
|
1362 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1363 |
msgid "Source"
|
1364 |
-
msgstr ""
|
1365 |
|
1366 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1367 |
-
msgid "Data"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
|
1371 |
msgid "Subscribed"
|
1372 |
-
msgstr ""
|
1373 |
|
1374 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1375 |
msgid "Log items deleted."
|
1376 |
-
msgstr ""
|
1377 |
|
1378 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1379 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
|
1380 |
-
msgid "Comment"
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
|
1384 |
-
msgid "deleted"
|
1385 |
-
msgstr ""
|
1386 |
-
|
1387 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
|
1388 |
msgid "Registration"
|
1389 |
-
msgstr ""
|
1390 |
|
1391 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1392 |
-
msgid "
|
1393 |
-
msgstr ""
|
1394 |
|
1395 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1396 |
-
|
1397 |
-
|
1398 |
-
msgstr ""
|
1399 |
|
1400 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1401 |
msgid "Contact Form 7"
|
1402 |
-
msgstr ""
|
1403 |
|
1404 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1405 |
msgid "bbPress: New Topic"
|
1406 |
-
msgstr ""
|
1407 |
|
1408 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1409 |
msgid "bbPress: New Reply"
|
1410 |
-
msgstr ""
|
1411 |
|
1412 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1413 |
msgid "Other Form"
|
1414 |
-
msgstr ""
|
1415 |
|
1416 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1417 |
msgid "No subscribe requests found."
|
1418 |
-
msgstr ""
|
1419 |
|
1420 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1421 |
msgid "All"
|
1422 |
-
msgstr ""
|
1423 |
|
1424 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:
|
1425 |
msgid "Checkbox"
|
1426 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1427 |
|
1428 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
|
1429 |
msgid ""
|
1430 |
"Any settings you specify here will override the <a href=\"%s\">general form "
|
1431 |
"settings</a>. If no setting is specified, the corresponding general setting "
|
1432 |
"value will be used."
|
1433 |
-
msgstr ""
|
1434 |
|
1435 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
|
1436 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
|
@@ -1439,196 +1600,503 @@ msgstr ""
|
|
1439 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
|
1440 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
|
1441 |
msgid "Inherit"
|
1442 |
-
msgstr ""
|
1443 |
|
1444 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
|
1445 |
msgid "Send an email copy of the form data?"
|
1446 |
-
msgstr ""
|
1447 |
|
1448 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
|
1449 |
msgid ""
|
1450 |
"Tick \"yes\" if you want to receive an email with the form data for every "
|
1451 |
"sign-up request."
|
1452 |
-
msgstr ""
|
1453 |
|
1454 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
|
1455 |
msgid "Send the copy to this email:"
|
1456 |
-
msgstr ""
|
1457 |
|
1458 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
|
1459 |
msgid "Messages"
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
|
1463 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
1464 |
-
msgid "Success"
|
1465 |
-
msgstr ""
|
1466 |
-
|
1467 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:157
|
1468 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:145
|
1469 |
-
msgid "Invalid email address"
|
1470 |
-
msgstr ""
|
1471 |
|
1472 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:
|
1473 |
-
|
1474 |
-
|
1475 |
-
msgstr ""
|
1476 |
|
1477 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/
|
1478 |
-
|
1479 |
-
|
1480 |
-
msgstr ""
|
1481 |
|
1482 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/
|
1483 |
-
|
1484 |
-
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:175
|
1488 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
|
1489 |
-
msgid "Other errors"
|
1490 |
-
msgstr ""
|
1491 |
|
1492 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:
|
1493 |
msgid "Form usage"
|
1494 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1495 |
|
1496 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
1497 |
msgid ""
|
1498 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1499 |
"forms."
|
1500 |
-
msgstr ""
|
1501 |
|
1502 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
1503 |
msgid "Custom label texts"
|
1504 |
-
msgstr ""
|
1505 |
|
1506 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:
|
1507 |
msgid ""
|
1508 |
"Override the default checkbox label text for any given checkbox using the "
|
1509 |
"fields below."
|
1510 |
-
msgstr ""
|
1511 |
|
1512 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
|
1513 |
msgid "Forms & Settings"
|
1514 |
-
msgstr ""
|
1515 |
|
1516 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
|
1517 |
msgid "CSS Styles Builder"
|
1518 |
-
msgstr ""
|
1519 |
|
1520 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
|
1521 |
msgid "License & API Settings"
|
1522 |
-
msgstr ""
|
1523 |
|
1524 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
|
1525 |
msgid "No lists were found in your MailChimp account."
|
1526 |
-
msgstr ""
|
1527 |
|
1528 |
-
#: mailchimp-for-wordpress-pro/includes/views/
|
1529 |
-
msgid "Statistics"
|
1530 |
-
msgstr ""
|
1531 |
-
|
1532 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1533 |
-
msgid "Log"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:9
|
1537 |
msgid ""
|
1538 |
"Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
|
1539 |
-
"email
|
1540 |
-
msgstr ""
|
1541 |
|
1542 |
-
#: mailchimp-for-wordpress-pro/includes/views/
|
|
|
|
|
|
|
|
|
|
|
1543 |
msgid "Use the fields below to create custom styling rules for your forms."
|
1544 |
-
msgstr ""
|
1545 |
|
1546 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1547 |
msgid "Select form to build styles for:"
|
1548 |
-
msgstr ""
|
1549 |
|
1550 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
|
|
1551 |
msgid "Create at least one form first."
|
1552 |
-
msgstr ""
|
1553 |
|
1554 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
1555 |
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1556 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1557 |
|
1558 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1559 |
msgid "Are you sure you want to delete all custom styles for this form?"
|
1560 |
-
msgstr ""
|
1561 |
|
1562 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
1563 |
msgid "Delete Form Styles"
|
1564 |
-
msgstr ""
|
1565 |
|
1566 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:
|
1567 |
-
msgid "
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:231
|
1571 |
-
msgid "Build CSS File"
|
1572 |
-
msgstr ""
|
1573 |
|
1574 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1575 |
msgid "Sign-Up Forms"
|
1576 |
-
msgstr ""
|
1577 |
|
1578 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1579 |
msgid "Create New Form"
|
1580 |
-
msgstr ""
|
1581 |
|
1582 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1583 |
msgid "General form settings"
|
1584 |
-
msgstr ""
|
1585 |
|
1586 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1587 |
msgid ""
|
1588 |
"If you %screated a custom stylesheet%s and want it to be loaded, select "
|
1589 |
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1590 |
" of the default themes."
|
1591 |
-
msgstr ""
|
1592 |
|
1593 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1594 |
msgid "Select Color"
|
1595 |
-
msgstr ""
|
1596 |
|
1597 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1598 |
msgid "Save all changes"
|
1599 |
-
msgstr ""
|
1600 |
|
1601 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1602 |
msgid "Default MailChimp settings"
|
1603 |
-
msgstr ""
|
1604 |
|
1605 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
|
1606 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1607 |
msgid ""
|
1608 |
"The following settings apply to <strong>all</strong> forms but can be "
|
1609 |
"overridden on a per-form basis."
|
1610 |
-
msgstr ""
|
1611 |
|
1612 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
|
1613 |
msgid "Default Form Settings"
|
1614 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1615 |
|
1616 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1617 |
msgid "Default Messages"
|
1618 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1619 |
|
1620 |
#. Plugin URI of the plugin/theme
|
1621 |
msgid "https://mc4wp.com/"
|
1622 |
-
msgstr ""
|
1623 |
|
1624 |
#. Description of the plugin/theme
|
1625 |
msgid "Adds various sign-up methods to your website."
|
1626 |
-
msgstr ""
|
1627 |
|
1628 |
#. Author of the plugin/theme
|
1629 |
msgid "Danny van Kooten"
|
1630 |
-
msgstr ""
|
1631 |
|
1632 |
#. Author URI of the plugin/theme
|
1633 |
msgid "http://dannyvankooten.com"
|
1634 |
-
msgstr ""
|
1 |
+
# Copyright (C) 2015 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
+
# Dimitris Lioris <lioris.dim@gmail.com>, 2015
|
5 |
+
# Katie Aggelakou <e.ecodress@gmail.com>, 2015
|
6 |
+
# Michael Kotsarinis <mk73628@gmail.com>, 2015
|
7 |
+
# Spyros Tzortzis <spytzo@gmail.com>, 2015
|
8 |
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-05-26 14:41:46+00:00\n"
|
13 |
+
"PO-Revision-Date: 2015-08-16 06:01+0000\n"
|
14 |
+
"Last-Translator: Michael Kotsarinis <mk73628@gmail.com>\n"
|
15 |
+
"Language-Team: Greek (Greece) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/el_GR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
28 |
"X-Poedit-SourceCharset: utf-8\n"
|
29 |
"X-Textdomain-Support: yes\n"
|
30 |
|
31 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:141
|
32 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:157
|
33 |
msgid "Settings"
|
34 |
+
msgstr "Ρυθμίσεις"
|
35 |
|
36 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:160
|
37 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
|
38 |
+
msgid "Upgrade to MailChimp for WordPress Pro"
|
39 |
+
msgstr "Αναβαθμίστε σε MailChimp για Wordpress Pro"
|
40 |
|
41 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:179
|
42 |
+
msgid "MailChimp API Settings"
|
43 |
+
msgstr "Ρυθμίσεις MailChimp API"
|
44 |
+
|
45 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:180
|
46 |
+
msgid "MailChimp"
|
47 |
+
msgstr "MailChimp"
|
48 |
+
|
49 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:185
|
50 |
+
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
51 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
|
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/admin/class-admin.php:186
|
57 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
58 |
msgid "Checkboxes"
|
59 |
+
msgstr "Πλαίσια Ελέγχου"
|
60 |
+
|
61 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
62 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
63 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
|
64 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
|
65 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
66 |
+
msgid "Form Settings"
|
67 |
+
msgstr "Ρυθμίσεις φόρμας"
|
68 |
|
69 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:192
|
70 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:513
|
71 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
72 |
msgid "Forms"
|
73 |
+
msgstr "Φόρμες"
|
74 |
|
75 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:196
|
76 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:197
|
77 |
+
msgid "Upgrade to Pro"
|
78 |
+
msgstr "Αναβάθμιση στην έκδοση Pro"
|
79 |
+
|
80 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:283
|
81 |
msgid "This option is only available in MailChimp for WordPress Pro."
|
82 |
+
msgstr "Αυτή η επιλογή είναι διαθέσιμη μόνο στο MailChimp για Wordpress Pro"
|
83 |
|
84 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:285
|
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:21
|
88 |
+
msgid "(PRO ONLY)"
|
89 |
+
msgstr "(ΜΟΝΟ για έκδοση PRO)"
|
90 |
+
|
91 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
92 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
93 |
+
msgid "Button text"
|
94 |
+
msgstr "Κείμενο στο κουμπί"
|
95 |
+
|
96 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
97 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
98 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
|
99 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
100 |
+
msgid "Initial value"
|
101 |
+
msgstr "Αρχική τιμή"
|
102 |
+
|
103 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:288
|
104 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
105 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
106 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
107 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
|
108 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
109 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
110 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
111 |
+
msgid "(optional)"
|
112 |
+
msgstr "(προαιρετικό)"
|
113 |
+
|
114 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:289
|
115 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
|
116 |
+
msgid "Label for"
|
117 |
+
msgstr "Ετικέτα για"
|
118 |
+
|
119 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:290
|
120 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
|
121 |
+
msgid "(or leave empty)"
|
122 |
+
msgstr "(ή αφήστε κενό)"
|
123 |
+
|
124 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:291
|
125 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
|
126 |
+
msgid "Subscribe"
|
127 |
+
msgstr "Εγγραφή"
|
128 |
+
|
129 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
130 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
131 |
+
msgid "Unsubscribe"
|
132 |
+
msgstr "Κατάργηση εγγραφής"
|
133 |
+
|
134 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
135 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
136 |
msgid "Comment form"
|
137 |
+
msgstr "Φόρμα σχολίου"
|
138 |
|
139 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:317
|
140 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
|
141 |
msgid "Registration form"
|
142 |
+
msgstr "Φόρμα εγγραφής"
|
143 |
|
144 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
145 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
146 |
msgid "MultiSite forms"
|
147 |
+
msgstr "Φόρμες MultiSite"
|
148 |
|
149 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
150 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
151 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
152 |
msgid "BuddyPress registration"
|
153 |
+
msgstr "Εγγραφή BuddyPress"
|
154 |
|
155 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:333
|
156 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:337
|
157 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
158 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
159 |
msgid "%s checkout"
|
160 |
+
msgstr "%s ολοκλήρωσης"
|
161 |
+
|
162 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
163 |
+
msgid ""
|
164 |
+
"The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
|
165 |
+
"first 100 lists are shown."
|
166 |
+
msgstr "Το πρόσθετο μπορεί να πάρει το πολύ 100 λίστες από το MailChimp, μόνο οι πρώτες 100 λίστες φαίνονται."
|
167 |
|
168 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:370
|
169 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:719
|
170 |
msgid "Renewed MailChimp cache."
|
171 |
+
msgstr "Ανανεωμένη προσωρινή μνήμη MailChimp."
|
172 |
|
173 |
+
#: mailchimp-for-wordpress/includes/admin/class-admin.php:372
|
174 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
|
175 |
msgid "Failed to renew MailChimp cache - please try again later."
|
176 |
+
msgstr "Αποτυχία να ανανεωθεί η cache του MailChimp - παρακαλώ δοκιμάστε ξανά αργότερα."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
|
178 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
179 |
msgid "MailChimp Sign-Up Form"
|
180 |
+
msgstr "Φόρμα Εγγραφής MailChimp"
|
181 |
|
182 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:23
|
183 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
184 |
+
msgstr "Εμφανίζει την φόρμα εγγραφής του MailChimp για WordPress"
|
185 |
|
186 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:67
|
187 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:71
|
188 |
msgid "Newsletter"
|
189 |
+
msgstr "Newsletter"
|
190 |
|
191 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:70
|
192 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:82
|
193 |
msgid "Title:"
|
194 |
+
msgstr "Τίτλος:"
|
195 |
|
196 |
+
#: mailchimp-for-wordpress/includes/class-widget.php:74
|
197 |
msgid ""
|
198 |
+
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
199 |
+
" form settings</a>."
|
200 |
+
msgstr "Μπορείτε να τροποποιήσετε την φόρμα εγγραφής σας στις <a href=\"%s\">Ρυθμίσεις φόρμας του MailChimp για Wordpress</a>."
|
201 |
|
202 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:15
|
|
|
203 |
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
204 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
|
205 |
msgid "Email address"
|
206 |
+
msgstr "Διεύθυνση email"
|
207 |
|
208 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:16
|
209 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
|
210 |
+
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
|
211 |
msgid "Your email address"
|
212 |
+
msgstr "Η ηλεκτρονική σας διεύθυνση"
|
213 |
|
214 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:17
|
215 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
|
216 |
+
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:3
|
217 |
msgid "Sign up"
|
218 |
+
msgstr "Εγγραφή"
|
219 |
|
220 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:24
|
221 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:9
|
222 |
msgid "Sign me up for the newsletter!"
|
223 |
+
msgstr "Να εγγραφώ στο newsletter!"
|
224 |
|
225 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
226 |
msgid ""
|
227 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
228 |
"inbox."
|
229 |
+
msgstr "Σας ευχαριστούμε, το αίτημά σας για εγγραφή ήταν επιτυχές! Παρακαλώ ελέγξτε τα εισερχόμενα του email σας."
|
230 |
|
231 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
232 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
|
233 |
msgid "Oops. Something went wrong. Please try again later."
|
234 |
+
msgstr "Ωχ. Κάτι πήγε λάθος. Παρακαλώ δοκιμάστε αργότερα."
|
235 |
|
236 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
237 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
|
238 |
msgid "Please provide a valid email address."
|
239 |
+
msgstr "Παρακαλώ δώστε μας μία έγκυρη ηλεκτρονική διεύθυνση."
|
240 |
|
241 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
242 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
|
243 |
msgid "Given email address is already subscribed, thank you!"
|
244 |
+
msgstr "Η διεύθυνση email που δώσατε έχει ήδη εγγραφεί, σας ευχαριστούμε!"
|
245 |
|
246 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
247 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
|
248 |
msgid "Please complete the CAPTCHA."
|
249 |
+
msgstr "Παρακαλώ συμπληρώστε το CAPTCHA."
|
250 |
|
251 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
252 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:39
|
253 |
msgid "Please fill in the required fields."
|
254 |
+
msgstr "Παρακαλώ συμπληρώστε τα απαιτούμενα πεδία."
|
255 |
+
|
256 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:50
|
257 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
258 |
+
msgid "You were successfully unsubscribed."
|
259 |
+
msgstr "Απεγγραφήκατε επιτυχώς."
|
260 |
+
|
261 |
+
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
262 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
263 |
+
msgid "Given email address is not subscribed."
|
264 |
+
msgstr "Η διεύθυνση email που δώσατε δεν έχει εγγραφεί."
|
265 |
|
266 |
+
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
267 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
268 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
269 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
270 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
271 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:121
|
272 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:134
|
273 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:145
|
274 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:164
|
275 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:178
|
276 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
277 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
|
278 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
|
279 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
|
283 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
|
284 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
285 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
|
286 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
|
287 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
288 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
289 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
|
290 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
|
291 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
|
293 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
294 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
295 |
msgid "Yes"
|
296 |
+
msgstr "Ναι"
|
297 |
|
298 |
+
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
299 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
300 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
301 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
302 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:27
|
303 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:110
|
304 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:125
|
305 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:136
|
306 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:149
|
307 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:168
|
308 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:182
|
309 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
310 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
|
311 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
|
312 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
|
316 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
|
317 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
318 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
|
319 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:75
|
320 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
321 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
322 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
|
323 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
|
324 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
|
327 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
328 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
329 |
msgid "No"
|
330 |
+
msgstr "Όχι"
|
331 |
+
|
332 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:235
|
333 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
|
334 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:300
|
335 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
|
336 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
|
337 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
|
338 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
|
339 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
|
340 |
msgid "MailChimp for WordPress - Error"
|
341 |
+
msgstr "MailChimp για WordPress - Σφάλμα"
|
342 |
|
343 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
|
344 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
|
345 |
msgid ""
|
346 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
347 |
"settings</a>."
|
348 |
+
msgstr "Παρακαλούμε επιλέξτε μια λίστα για εγγραφή στις <a href=\"%s\">ρυθμίσεις για checkbox</a>."
|
349 |
|
350 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
|
351 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
|
352 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
|
353 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
|
354 |
msgid "This message is only visible to administrators for debugging purposes."
|
355 |
+
msgstr "Αυτό το μήνυμα εμφανίζεται μόνο στους διαχειριστές για ανάγκες αποσφαλμάτωσης."
|
356 |
|
357 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
|
358 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
|
359 |
msgid ""
|
360 |
"The MailChimp server returned the following error message as a response to "
|
361 |
"our sign-up request:"
|
362 |
+
msgstr "Ο διακομιστής του MailChimp επέστρεψε το παρακάτω μήνυμα σφάλματος ως απάντηση στο αίτημά μας για εγγραφή:"
|
363 |
|
364 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
|
365 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
|
366 |
msgid "This is the data that was sent to MailChimp:"
|
367 |
+
msgstr "Αυτά είναι τα δεδομένα που στάλθηκαν στο MailChimp:"
|
368 |
|
369 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
|
370 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
371 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
372 |
msgid "Email address:"
|
373 |
+
msgstr "Διεύθυνση email:"
|
374 |
|
375 |
+
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
376 |
+
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
377 |
msgid "Merge variables:"
|
378 |
+
msgstr "Μεταβλητές συγχώνευσης:"
|
379 |
|
380 |
#. Plugin Name of the plugin/theme
|
381 |
msgid "MailChimp for WordPress"
|
382 |
+
msgstr "MailChimp για το WordPress"
|
383 |
+
|
384 |
+
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
385 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:99
|
386 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
387 |
+
msgid "MailChimp Settings"
|
388 |
+
msgstr "Ρυθμίσεις MailChimp"
|
389 |
|
390 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
391 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
392 |
msgid "API Settings"
|
393 |
+
msgstr "Ρυθμίσεις API"
|
394 |
|
395 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
396 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
397 |
msgid "CONNECTED"
|
398 |
+
msgstr "ΣΥΝΔΕΔΕΜΕΝΟ"
|
399 |
|
400 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
401 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
402 |
msgid "NOT CONNECTED"
|
403 |
+
msgstr "ΜΗ ΣΥΝΔΕΔΕΜΕΝΟ"
|
404 |
|
405 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
406 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
407 |
msgid "API Key"
|
408 |
+
msgstr "Κλειδί API"
|
409 |
|
410 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
411 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
412 |
msgid "Your MailChimp API key"
|
413 |
+
msgstr "Το κλειδί API του MailChimp"
|
414 |
|
415 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
416 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
417 |
msgid "Get your API key here."
|
418 |
+
msgstr "Πάρτε το κλειδί API εδώ."
|
419 |
|
420 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
421 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
422 |
msgid "MailChimp Data"
|
423 |
+
msgstr "Δεδομένα MailChimp"
|
424 |
|
425 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
426 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
428 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
429 |
"your MailChimp lists, please use the following button to renew your cached "
|
430 |
"data."
|
431 |
+
msgstr "Ο παρακάτω πίνακας παρουσιάζει τα δεδομένα των λιστών σας στο MailChimp. Αν πραγματοποιήσατε αλλαγές στις λίστες σας στο MailChimp, παρακαλώ χρησιμοποιήστε το παρακάτω κουμπί για να ανανεώσετε τα δεδομένα προσωρινής μνήμης."
|
432 |
|
433 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
434 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
435 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
436 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
437 |
msgid "Renew MailChimp lists"
|
438 |
+
msgstr "Ανανέωση λιστών MailChimp"
|
439 |
|
440 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
441 |
msgid "No lists were found in your MailChimp account"
|
442 |
+
msgstr "Δεν βρέθηκαν λίστες στον λογαριασμό σας στο MailChimp."
|
|
|
|
|
|
|
|
|
|
|
443 |
|
444 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
445 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
446 |
msgid ""
|
447 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
448 |
"checkbox to."
|
449 |
+
msgstr "Για χρησιμοποιήσετε checkbox εγγραφής, επιλέξτε τουλάχιστον μια λίστα και μια φόρμα στις οποίες θα προστεθεί το checkbox."
|
450 |
|
451 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
452 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
453 |
msgid "MailChimp settings for checkboxes"
|
454 |
+
msgstr "Ρυθμίσεις του MailChimp για checkbox"
|
455 |
|
456 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
457 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
458 |
msgid ""
|
459 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
460 |
" subscribe people to."
|
461 |
+
msgstr "Αν θέλετε να χρησιμοποιήσετε checkbox εγγραφής, επιλέξτε τουλάχιστον μία λίστα στην οποία θα εγγράφονται οι ενδιαφερόμενοι."
|
462 |
|
463 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
464 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
465 |
msgid "MailChimp Lists"
|
466 |
+
msgstr "Λίστες MailChimp"
|
467 |
|
468 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
469 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
470 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
|
471 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
|
472 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
473 |
+
msgstr "Δεν βρέθηκαν λίστες, <a href=\"%s\">είστε συνδεδεμένοι στο MailChimp</a>;"
|
474 |
|
475 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
|
476 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
|
477 |
msgid ""
|
478 |
"Select the list(s) to which people who check the checkbox should be "
|
479 |
"subscribed."
|
480 |
+
msgstr "Επιλέξτε τη λίστα(ες) στην οποία θα εγγράφονται όσοι επιλέγουν το checkbox."
|
481 |
|
482 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
483 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:102
|
484 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
|
485 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
|
486 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
487 |
msgid "Double opt-in?"
|
488 |
+
msgstr "Διπλή επιβεβαίωση (double opt-in);"
|
489 |
|
490 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
|
491 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:113
|
492 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
|
493 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
|
494 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
|
495 |
msgid ""
|
496 |
"Select \"yes\" if you want people to confirm their email address before "
|
497 |
"being subscribed (recommended)"
|
498 |
+
msgstr "Επιλέξτε \"ναι\" εάν θέλετε οι χρήστες να επιβεβαιώνουν την ηλεκτρονική τους διεύθυνση προτού εγγραφούν (προτείνεται)"
|
499 |
|
500 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
501 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
|
502 |
msgid "Checkbox settings"
|
503 |
+
msgstr "Ρυθμίσεις checkbox"
|
504 |
|
505 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
506 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
|
507 |
msgid "Add the checkbox to these forms"
|
508 |
+
msgstr "Προσθέστε το checkbox σε αυτές τις φόρμες"
|
509 |
|
510 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
511 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
|
512 |
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
513 |
+
msgstr "Η επιλογή μια φόρμας θα προσθέσει αυτόματα το checkbox εγγραφής σε αυτή."
|
514 |
|
515 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
516 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
517 |
msgid "Checkbox label text"
|
518 |
+
msgstr "Κείμενο ετικέτας checkbox"
|
519 |
|
520 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
521 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
522 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
|
523 |
msgid "HTML tags like %s are allowed in the label text."
|
524 |
+
msgstr "Οι ετικέτες HTML όπως %s επιτρέπονται στο κείμενο της ετικέτας."
|
525 |
|
526 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
527 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
528 |
msgid "Pre-check the checkbox?"
|
529 |
+
msgstr "Να είναι το checkbox προεπιλεγμένο;"
|
530 |
|
531 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
532 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
|
533 |
msgid "Load some default CSS?"
|
534 |
+
msgstr "Να φορτωθεί κάποιο προεπιλεγμένο CSS;"
|
535 |
|
536 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
537 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
|
538 |
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
539 |
+
msgstr "Επιλέξτε \"ναι\" αν το checkbox εμφανίζεται σε ένα περίεργο σημείο."
|
540 |
|
541 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
|
542 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
|
543 |
msgid "WooCommerce checkbox position"
|
544 |
+
msgstr "Θέση checkbox του WooCommerce"
|
545 |
|
546 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
|
547 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
|
548 |
msgid "After the billing details"
|
549 |
+
msgstr "Μετά τις λεπτομέρειες χρέωσης"
|
550 |
|
551 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
|
552 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:126
|
553 |
msgid "After the additional information"
|
554 |
+
msgstr "Μετά τις πρόσθετες πληροφορίες"
|
555 |
|
556 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
|
557 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
|
558 |
msgid ""
|
559 |
"Choose the position for the checkbox in your WooCommerce checkout form."
|
560 |
+
msgstr "Αλλάξτε τη θέση του checkbox στην φόρμα της σελίδας ολοκλήρωσης παραγγελίας του WooCommerce"
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
|
562 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
563 |
msgid ""
|
564 |
"To use the MailChimp sign-up form, configure the form below and then either "
|
565 |
"paste %s in the content of a post or page or use the widget."
|
566 |
+
msgstr "Για να χρησιμοποιήσετε τη φόρμα εγγραφής του MailChimp, προσαρμόστε τη φόρμα παρακάτω και μετά είτε επικολλήστε το %s στο περιεχόμενο ενός άρθρου ή σελίδας ή χρησιμοποιήστε το widget."
|
567 |
|
568 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
569 |
msgid "Required form settings"
|
570 |
+
msgstr "Απαραίτητες ρυθμίσεις φόρμας"
|
571 |
|
572 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
573 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
574 |
msgid "Load form styles (CSS)?"
|
575 |
+
msgstr "Να φορτωθούν τα στυλ CSS της φόρμας;"
|
576 |
|
577 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
578 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
579 |
msgid "Yes, load basic form styles"
|
580 |
+
msgstr "Ναι, να φορτωθούν τα βασικά στυλ της φόρμας"
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
583 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
584 |
msgid "Yes, load my custom form styles"
|
585 |
+
msgstr "Ναι, να φορτωθούν τα προσαρμοσμένα μου στυλ φόρμας"
|
586 |
|
587 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
588 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
589 |
msgid "Yes, load default form theme"
|
590 |
+
msgstr "Ναι, να φορτωθεί η προεπιλεγμένη φόρμα του θέματος"
|
591 |
|
592 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
593 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
594 |
msgid "Light Theme"
|
595 |
+
msgstr "Ανοιχτόχρωμο Θέμα"
|
596 |
|
597 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
598 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
599 |
msgid "Red Theme"
|
600 |
+
msgstr "Κόκκινο Θέμα"
|
601 |
|
602 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
603 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
604 |
msgid "Green Theme"
|
605 |
+
msgstr "Πράσινο Θέμα"
|
606 |
|
607 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
608 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
609 |
msgid "Blue Theme"
|
610 |
+
msgstr "Μπλε Θέμα"
|
611 |
|
612 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
613 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
614 |
msgid "Dark Theme"
|
615 |
+
msgstr "Σκούρο Θέμα"
|
616 |
|
617 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
618 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
619 |
msgid "Custom Color Theme"
|
620 |
+
msgstr "Προσαρμοσμένο Θέμα Χρώματος"
|
621 |
|
622 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
623 |
msgid ""
|
624 |
"If you want to load some default CSS styles, select \"basic formatting "
|
625 |
"styles\" or choose one of the color themes"
|
626 |
+
msgstr "Αν θέλετε να φορτώσετε μερικά προκαθορισμένα στυλ CSS, επιλέξτε \"βασικά στυλ μορφοποίησης\" ή επιλέξτε ένα από χρωματικά θέματα"
|
627 |
|
628 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
629 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
630 |
msgid "Lists this form subscribes to"
|
631 |
+
msgstr "Λίστες στις οποίες γίνεται εγγραφή από αυτή τη φόρμα"
|
632 |
|
633 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
634 |
msgid ""
|
635 |
"Select the list(s) to which people who submit this form should be "
|
636 |
"subscribed."
|
637 |
+
msgstr "Επιλέξτε τη λίστα(ες) στην οποία θα εγγράφονται όσοι υποβάλλουν αυτή τη φόρμα."
|
638 |
|
639 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:69
|
640 |
msgid "Form mark-up"
|
641 |
+
msgstr "Κώδικας φόρμας"
|
|
|
|
|
|
|
|
|
|
|
642 |
|
643 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:79
|
644 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
|
645 |
msgid ""
|
646 |
"Use the shortcode %s to display this form inside a post, page or text "
|
647 |
"widget."
|
648 |
+
msgstr "Χρησιμοποιήστε το shortcode %s για να εμφανίσετε αυτή τη φόρμα μέσα σε ένα άρθρο, μία σελίδα ή μία μονάδα κειμένου."
|
649 |
+
|
650 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
651 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
652 |
+
msgid "Your form is missing the following (required) form fields:"
|
653 |
+
msgstr "Από την φόρμα σας απουσιάζουν τα παρακάτω (απαιτούμενα) πεδία:"
|
654 |
|
655 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:117
|
656 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
657 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
658 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
659 |
msgid "Send Welcome Email?"
|
660 |
+
msgstr "Να αποσταλεί email καλωσορίσματος;"
|
661 |
|
662 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:128
|
663 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
664 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
|
665 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
|
666 |
msgid ""
|
667 |
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
668 |
"succeeds (only when double opt-in is disabled)."
|
669 |
+
msgstr "Επιλέξτε \"ναι\" εάν θέλετε να στείλετε email καλωσορίσματος στις λίστες σας όταν μία εγγραφή είναι επιτυχής (μόνο όταν η διπλή επιβεβαίωση είναι απενεργοποιημένη)."
|
670 |
|
671 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:131
|
672 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
673 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:67
|
674 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
675 |
msgid "Update existing subscribers?"
|
676 |
+
msgstr "Να ενημερωθούν τα στοιχεία των ήδη εγγεγραμμένων;"
|
677 |
|
678 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:138
|
679 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
680 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
|
681 |
msgid ""
|
682 |
"Select \"yes\" if you want to update existing subscribers (instead of "
|
683 |
"showing the \"already subscribed\" message)."
|
684 |
+
msgstr "Επιλέξτε \"ναι\" εάν θέλετε να ενημερωθούν τα στοιχεία των ήδη εγγεγραμμένων (αντί να εμφανιστεί μήνυμα ότι \"έχετε ήδη εγγραφεί\")."
|
685 |
|
686 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:141
|
687 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
|
688 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
|
689 |
msgid "Replace interest groups?"
|
690 |
+
msgstr "Να αντικατασταθούν οι ομάδες ενδιαφερόντων;"
|
691 |
|
692 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:152
|
693 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
694 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
|
695 |
msgid ""
|
696 |
"Select \"yes\" if you want to replace the interest groups with the groups "
|
697 |
"provided instead of adding the provided groups to the member's interest "
|
698 |
"groups (only when updating a subscriber)."
|
699 |
+
msgstr "Επιλέξτε \"ναι\" εάν θέλετε να αντικατασταθούν οι ομάδες ενδιαφερόντων με τις ομάδες που παρέχονται αντί να προστεθούν οι ομάδες που παρέχονται στις ομάδες ενδιαφερόντων του μέλους (μόνο όταν γίνεται ενημέρωση ενός εγγεγραμμένου συνδρομητή). "
|
700 |
|
701 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:156
|
702 |
msgid "Form Settings & Messages"
|
703 |
+
msgstr "Ρυθμίσεις & Μηνύματα Φόρμας"
|
704 |
|
705 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:160
|
706 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
707 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
708 |
msgid "Enable AJAX form submission?"
|
709 |
+
msgstr "Να επιτραπεί η χρήση AJAX στην καταχώριση της φόρμας;"
|
710 |
|
711 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:171
|
712 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
713 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
714 |
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
715 |
+
msgstr "Επιλέξτε \"ναι\" εάν επιθυμείτε τη χρήση AJAX (JavaScript) στις φόρμες εγγραφής."
|
716 |
|
717 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:174
|
718 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
719 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
|
720 |
msgid "Hide form after a successful sign-up?"
|
721 |
+
msgstr "Να κρύβεται η φόρμα έπειτα από μία επιτυχημένη εγγραφή;"
|
722 |
|
723 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:185
|
724 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
|
725 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
|
726 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
727 |
+
msgstr "Επιλέξτε \"ναι\" ώστε να κρύβεται η φόρμα έπειτα από μία επιτυχημένη εγγραφή."
|
728 |
|
729 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:188
|
730 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
|
731 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
|
732 |
msgid "Redirect to URL after successful sign-ups"
|
733 |
+
msgstr "Ανακατεύθυνση σε URL έπειτα από επιτυχημένες εγγραφές"
|
734 |
|
735 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:190
|
736 |
msgid "Example: %s"
|
737 |
+
msgstr "Παράδειγμα: %s"
|
738 |
|
739 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:191
|
740 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
|
|
|
741 |
msgid ""
|
742 |
+
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
743 |
+
" (absolute) URLs, including <code>http://</code>."
|
744 |
+
msgstr "Αφήστε το κενό ή εισάγετε <code>0</code> εάν δεν θέλετε να γίνεται ανακατεύθυνση. Διαφορετικά, χρησιμοποιήστε πλήρη (απόλυτα) URL, συμπεριλαμβανομένου του <code>http://</code>."
|
745 |
|
746 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
747 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
748 |
+
msgid "Successfully subscribed"
|
749 |
+
msgstr "Εγγραφήκατε επιτυχώς"
|
750 |
|
751 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
752 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
753 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
|
754 |
+
msgid ""
|
755 |
+
"The text that shows when an email address is successfully subscribed to the "
|
756 |
+
"selected list(s)."
|
757 |
+
msgstr "Το κείμενο που εμφανίζεται όταν μια διεύθυνση ηλ. ταχυδρομείου εγγράφεται επιτυχώς στην επιλεγμένη λίστα (ή λίστες)."
|
758 |
+
|
759 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:202
|
760 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
|
761 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
|
762 |
+
msgid "Invalid email address"
|
763 |
+
msgstr "Η διεύθυνση e-mail δεν είναι έγκυρη"
|
764 |
|
765 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:205
|
766 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
|
767 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
|
768 |
+
msgid "The text that shows when an invalid email address is given."
|
769 |
+
msgstr "Το κείμενο που εμφανίζεται όταν μια διεύθυνση ηλ. ταχυδρομείου που επιχειρεί εγγραφή δεν είναι έγκυρη."
|
770 |
|
771 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
772 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
|
773 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
|
774 |
+
msgid "Required field missing"
|
775 |
+
msgstr "Δεν έχει συμπληρωθεί κάποιο απαραίτητο πεδίο"
|
776 |
|
777 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:212
|
778 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
|
779 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
|
780 |
+
msgid ""
|
781 |
+
"The text that shows when a required field for the selected list(s) is "
|
782 |
+
"missing."
|
783 |
+
msgstr "Το κείμενο που εμφανίζεται όταν ένα υποχρεωτικό πεδίο για την επιλεγμένη λίστα (ή λίστες) δεν έχει συμπληρωθεί."
|
784 |
+
|
785 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:216
|
786 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
|
787 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
|
788 |
+
msgid "Already subscribed"
|
789 |
+
msgstr "Έχετε ήδη εγγραφεί"
|
790 |
|
791 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
792 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
|
793 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
|
794 |
+
msgid ""
|
795 |
+
"The text that shows when the given email is already subscribed to the "
|
796 |
+
"selected list(s)."
|
797 |
+
msgstr "Το κείμενο που εμφανίζεται όταν η διεύθυνση ηλ. ταχυδρομείου που επιχειρεί εγγραφή είναι εγγεγραμμένη στην επιλεγμένη λίστα (ή λίστες)."
|
798 |
|
799 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:224
|
800 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
|
801 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
802 |
+
msgid "Invalid CAPTCHA"
|
803 |
+
msgstr "Λάθος στο CAPTCHA"
|
804 |
|
805 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
806 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
807 |
+
msgid "General error"
|
808 |
+
msgstr "Γενικό σφάλμα"
|
809 |
|
810 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
811 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
812 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
|
813 |
+
msgid "The text that shows when a general error occured."
|
814 |
+
msgstr "Το κείμενο που εμφανίζεται όταν προκύπτει κάποιο γενικό σφάλμα."
|
815 |
+
|
816 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:236
|
817 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
|
818 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
|
819 |
+
msgid "Unsubscribed"
|
820 |
+
msgstr "Απεγγραφή"
|
821 |
|
822 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
823 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
|
824 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
|
825 |
msgid ""
|
826 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
827 |
+
"given email address is successfully unsubscribed from the selected list(s)."
|
828 |
+
msgstr "Όταν γίνεται χρήση της μεθόδου κατάργησης εγγραφής, αυτό είναι το κείμενο που εμφανίζεται όταν η συγκεκριμένη διεύθυνση e-mail έχει απεγγραφεί επιτυχώς από την επιλεγμένη λίστα (ή λίστες)."
|
|
|
829 |
|
830 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:243
|
831 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
832 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
|
833 |
+
msgid "Not subscribed"
|
834 |
+
msgstr "Μη εγγεγραμμένη"
|
835 |
+
|
836 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:246
|
837 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
|
838 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
|
839 |
+
msgid ""
|
840 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
841 |
+
"given email address is not on the selected list(s)."
|
842 |
+
msgstr "Όταν γίνεται χρήση της μεθόδου κατάργησης εγγραφής, αυτό είναι το κείμενο που εμφανίζεται όταν η συγκεκριμένη διεύθυνση e-mail δεν υπάρχει στην επιλεγμένη λίστα (ή λίστες)."
|
843 |
+
|
844 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:252
|
845 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
|
846 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
|
847 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
848 |
+
msgstr "Οι ετικέτες HTML όπως %s επιτρέπονται στα πεδία του μηνύματος."
|
849 |
+
|
850 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:266
|
851 |
msgid "Form Styling"
|
852 |
+
msgstr "Στυλ Φόρμας"
|
853 |
|
854 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:267
|
855 |
msgid "Alter the visual appearance of the form by applying CSS rules to %s."
|
856 |
+
msgstr "Τροποποιήστε την οπτική εμφάνιση της φόρμας εφαρμόζοντας κανόνες CSS στο %s."
|
857 |
|
858 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:268
|
859 |
msgid ""
|
860 |
"You can add the CSS rules to your theme stylesheet using the <a "
|
861 |
+
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
862 |
+
msgstr "Μπορείτε να προσθέστε τους κανόνες CSS στο φύλλο στυλ του θέματός σας χρησιμοποιώντας τον <a href=\"%s\">Διορθωτή</a> ή με τη χρήση ενός πρόσθετου όπως το %s"
|
|
|
863 |
|
864 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:269
|
865 |
msgid ""
|
866 |
"The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
|
867 |
"selectors you can use to target the different form elements."
|
868 |
+
msgstr "Το <a href=\"%s\" target=\"_blank\">FAQ του πρόσθετου</a> απαριθμεί τους διάφορους επιλογείς CSS που μπορείτε να χρησιμοποιήσετε για να επιλέξετε τα διάφορα στοιχεία της φόρμας."
|
869 |
|
870 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:270
|
871 |
msgid ""
|
872 |
+
"If you need an easier way to style your forms, consider <a "
|
873 |
+
"href=\"%s\">upgrading to MailChimp for WordPress Pro</a> which comes with an"
|
874 |
+
" easy Styles Builder."
|
875 |
+
msgstr "Αν χρειάζεστε έναν ευκολότερο τρόπο για να διαμορφώσετε τις φόρμες σας, σκεφτείτε να <a href=\"%s\">αναβαθμίσετε στο MailChimp for WordPress Pro</a> που διαθέτει έναν εύχρηστο Κατασκευαστή Στυλ."
|
876 |
+
|
877 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
878 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
879 |
+
msgid "Variables"
|
880 |
+
msgstr "Μεταβλητές"
|
881 |
+
|
882 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
883 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
884 |
+
msgid ""
|
885 |
+
"The following list of variables can be used to <a href=\"%s\">add some "
|
886 |
+
"dynamic content to your form or success and error messages</a>."
|
887 |
+
msgstr "Η ακόλουθη λίστα μεταβλητών μπορεί να χρησιμοποιηθεί για <a href=\"%s\">να προσθέσετε κάποιο δυναμικό περιεχόμενο στη φόρμα επιτυχίας και στα μηνύματα σφάλματος</a>."
|
888 |
|
889 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
890 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
891 |
+
msgid "This allows you to personalise your form or response messages."
|
892 |
+
msgstr "Αυτό σας επιτρέπει να προσωποποιήσετε τη φόρμα σας ή τα απαντητικά μηνύματα."
|
893 |
|
894 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
895 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
896 |
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
897 |
+
msgstr "Αντικαθίσταται με το email του επισκέπτη (αν ορίζεται στο URL ή σε cookie)."
|
898 |
|
899 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:286
|
900 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
|
901 |
msgid "Replaced with the form response (error or success messages)."
|
902 |
+
msgstr "Αντικαθίσταται με τη φόρμα απάντησης (μηνύματα επιτυχίας ή σφάλματος)."
|
903 |
|
904 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
905 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
|
906 |
msgid "Replaced with a captcha field."
|
907 |
+
msgstr "Αντικαθίσταται με ένα πεδίο captcha."
|
908 |
|
909 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:296
|
910 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
|
911 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
912 |
+
msgstr "Αντικαθίσταται με τον αριθμό συνδρομητών στην επιλεγμένη λίστα(ες)"
|
913 |
|
914 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:300
|
915 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
|
916 |
msgid "Replaced with the current site language, eg: %s"
|
917 |
+
msgstr "Αντικαθίσταται με την τρέχουσα γλώσσα του ιστότοπου, πχ: "
|
918 |
|
919 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:304
|
920 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
|
921 |
msgid "Replaced with the visitor's IP address"
|
922 |
+
msgstr "Αντικαθίσταται με την IP του επισκέπτη"
|
923 |
|
924 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:308
|
925 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
|
926 |
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
927 |
+
msgstr "Αντικαθίσταται με την τρέχουσα ημερομηνία (yyyy/mm/dd πχ: %s)"
|
928 |
|
929 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:312
|
930 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:46
|
931 |
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
932 |
+
msgstr "Αντικαθίσταται με την τρέχουσα ώρα (hh:mm:ss πχ: %s)"
|
933 |
|
934 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:316
|
935 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:50
|
936 |
msgid ""
|
937 |
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
938 |
"in user)"
|
939 |
+
msgstr "Αντικαθίσταται με το email του συνδεδεμένου χρήστη (ή τίποτα, αν δεν υπάρχει συνδεδεμένος χρήστης)"
|
940 |
|
941 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:320
|
942 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:54
|
943 |
msgid "First name of the current user"
|
944 |
+
msgstr "Όνομα του τρέχοντος χρήστη"
|
945 |
|
946 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:324
|
947 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:58
|
948 |
msgid "Last name of the current user"
|
949 |
+
msgstr "Επώνυμο του τρέχοντος χρήστη"
|
950 |
|
951 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:328
|
952 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
|
953 |
msgid "Current user ID"
|
954 |
+
msgstr "ID του τρέχοντος χρήστη"
|
955 |
|
956 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:332
|
957 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
|
958 |
msgid "Current URL"
|
959 |
+
msgstr "Τρέχον URL"
|
960 |
+
|
961 |
+
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
962 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
963 |
+
msgid "The value of the <strong>FNAME</strong> field, if set."
|
964 |
+
msgstr "Η τιμή του πεδίου <strong>FNAME</strong>, αν έχει οριστεί."
|
965 |
|
966 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
967 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
968 |
msgid "Add a new field"
|
969 |
+
msgstr "Προσθήκη ενός νέου πεδίου"
|
970 |
|
971 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
972 |
msgid "Use the tool below to generate the HTML for your form fields."
|
973 |
+
msgstr "Χρησιμοποιήστε το παρακάτω εργαλείο για να παράξετε την HTML για τα πεδία της φόρμας σας."
|
974 |
|
975 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
|
976 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
|
977 |
msgid "Select MailChimp field.."
|
978 |
+
msgstr "Επιλέξτε πεδίο από το MailChimp.."
|
979 |
|
980 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
|
|
|
981 |
msgid "Submit Button"
|
982 |
+
msgstr "Κουμπί Υποβολής"
|
983 |
|
984 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
985 |
+
msgid "Subscribe / unsubscribe choice"
|
986 |
+
msgstr "Επιλογή Εγγραφής/Απεγγραφής"
|
|
|
987 |
|
988 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
989 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
990 |
+
msgid "List choice"
|
991 |
+
msgstr "Επιλογή λίστας"
|
992 |
|
993 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
994 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
995 |
+
msgid "Label"
|
996 |
+
msgstr "Ετικέτα"
|
|
|
|
|
|
|
|
|
997 |
|
998 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
999 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
1000 |
msgid "Placeholder"
|
1001 |
+
msgstr "Κείμενο υποκατάστασης (placeholder)"
|
|
|
|
|
|
|
|
|
|
|
1002 |
|
1003 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1004 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1005 |
msgid "Labels"
|
1006 |
+
msgstr "Ετικέτες"
|
1007 |
|
1008 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1009 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1010 |
msgid "(leave empty to hide)"
|
1011 |
+
msgstr "(αφήστε κενό για να κρυφτεί)"
|
1012 |
|
1013 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
|
1014 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
|
1015 |
msgid "Wrap in paragraph %s tags?"
|
1016 |
+
msgstr "Αναδίπλωση στις ετικέτες της παραγράφου %s;"
|
1017 |
|
1018 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
|
1019 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
|
1020 |
msgid "Required field?"
|
1021 |
+
msgstr "Απαραίτητο πεδίο;"
|
1022 |
|
1023 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
|
1024 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
|
1025 |
msgid "Add to form"
|
1026 |
+
msgstr "Προσθήκη στη φόρμα"
|
1027 |
|
1028 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
|
1029 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
|
1030 |
msgid "Generated HTML"
|
1031 |
+
msgstr "Παραγόμενη HTML"
|
1032 |
|
1033 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
|
1034 |
msgid "Select at least one list first."
|
1035 |
+
msgstr "Επιλέξτε τουλάχιστον μία λίστα πρώτα."
|
1036 |
|
1037 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
|
1038 |
msgid ""
|
1039 |
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
1040 |
"translated in your language or do you spot errors with the current "
|
1041 |
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
1042 |
"translation project and click \"help translate\"</a>."
|
1043 |
+
msgstr "Το MailChimp για WordPress έχει ανάγκη από μεταφραστές. Δεν έχει μεταφραστεί το πρόσθετο στη γλώσσα σας ή βλέπετε σφάλματα στην υπάρχουσα μετάφραση; Είναι εύκολο να βοηθήσετε! Πηγαίνετε στο <a href=\"%s\">project της μετάφρασης και κλικάρετε \"help translate\"</a>."
|
1044 |
|
1045 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:14
|
1046 |
msgid ""
|
1047 |
+
"Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress "
|
1048 |
+
"Pro</a> for an even better plugin, you will love it."
|
1049 |
+
msgstr "Σας αρέσει αυτό το πρόσθετο; <a href=\"%s\">Αναβαθμίστε στο MailChimp for WordPress Pro</a> για ένα ακόμα καλύτερο πρόσθετο, θα το αγαπήσετε."
|
1050 |
|
1051 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:20
|
1052 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:13
|
1053 |
msgid ""
|
1054 |
"This plugin is not developed by or affiliated with MailChimp in any way."
|
1055 |
+
msgstr "Αυτό το πρόσθετο δεν έχει αναπτυχθεί ή δεν είναι με κανένα τρόπο συνδεδεμένο με το MailChimp."
|
1056 |
|
1057 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1058 |
+
msgid "Looking for help?"
|
1059 |
+
msgstr "Ψάχνετε για βοήθεια;"
|
1060 |
|
1061 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1062 |
msgid ""
|
1063 |
+
"Make sure to look at the <a href=\"%s\">MailChimp for WordPress "
|
1064 |
+
"documentation</a>, the plugin <a href=\"%s\">FAQ</a> or use the <a "
|
1065 |
+
"href=\"%s\">support forums</a> on WordPress.org."
|
1066 |
+
msgstr "Κοιτάξτε στην <a href=\"%s\">τεκμηρίωση του MailChimp for WordPress</a>, στο <a href=\"%s\">FAQ</a> του πρόσθετου ή χρησιμοποιήστε τα <a href=\"%s\">φόρουμ υποστήριξης</a> στο "
|
1067 |
|
1068 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1069 |
+
msgid "Do you enjoy this plugin?"
|
1070 |
+
msgstr "Σας αρέσει αυτό το πρόσθετο;"
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
|
1072 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
|
|
|
|
|
|
|
|
1073 |
msgid "Leave a %s plugin review on WordPress.org"
|
1074 |
+
msgstr "Αφήστε μία %s κριτική για το πρόσθετο στο WordPress.org"
|
1075 |
|
1076 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
1077 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
1078 |
+
msgstr "Χρησιμοποιώ το MailChimp για WordPress του @DannyvanKooten - είναι υπέροχο!"
|
1079 |
|
1080 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
1081 |
msgid "Tweet about MailChimp for WordPress"
|
1082 |
+
msgstr "Τουιτάρετε για το MailChimp για WordPress"
|
1083 |
|
1084 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
1085 |
msgid ""
|
1086 |
"Review the plugin on your blog and link to <a href=\"%s\">the plugin "
|
1087 |
"page</a>."
|
1088 |
+
msgstr "Αφήστε μία κριτική για το πρόσθετο στο ιστολόγιό σας και βάλτε σύνδεσμο προς <a href=\"%s\">τη σελίδα του πρόσθετου</a>."
|
1089 |
+
|
1090 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
1091 |
+
msgid "There is an <a href=\"%s\">affiliate program</a> as well."
|
1092 |
+
msgstr "Υπάρχει ένα <a href=\"%s\">πρόγραμμα συνεργασίας</a> επίσης."
|
1093 |
|
1094 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
1095 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
1096 |
+
msgstr "Ψηφίστε \"works\" στη σελίδα του πρόσθετου στο WordPress"
|
1097 |
|
1098 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
|
1099 |
+
msgid ""
|
1100 |
+
"This plugin has an even better premium version, you will absolutely love it."
|
1101 |
+
msgstr "Αυτό το πρόσθετο έχει μία ακόμα καλύτερη premium έκδοση, σίγουρα θα την αγαπήσετε."
|
1102 |
|
1103 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1104 |
+
msgid "Some differences with this free version of the plugin:"
|
1105 |
+
msgstr "Μερικές διαφορές με τη δωρεάν έκδοση του πρόσθετου:"
|
|
|
1106 |
|
1107 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1108 |
+
msgid "Multiple forms"
|
1109 |
+
msgstr "Πολλαπλές φόρμες"
|
|
|
|
|
1110 |
|
1111 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
|
1112 |
+
msgid "Each subscribing to one or multiple MailChimp lists."
|
1113 |
+
msgstr "Κάθε μια εγγράφει σε μία ή πολλές λίστες του MailChimp."
|
1114 |
+
|
1115 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1116 |
+
msgid "AJAX forms"
|
1117 |
+
msgstr "Φόρμες "
|
1118 |
|
1119 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1120 |
+
msgid "Forms do not require a full page reload."
|
1121 |
+
msgstr "Οι φόρμες δεν απαιτούν πλήρη επαναφόρτωση της σελίδας."
|
1122 |
+
|
1123 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
|
1124 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
|
1125 |
+
msgid "Statistics"
|
1126 |
+
msgstr "Στατιστικά"
|
1127 |
+
|
1128 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
|
1129 |
+
msgid "Every form interaction is logged and visualised in insightful charts."
|
1130 |
+
msgstr "Κάθε αλληλεπίδραση με τη φόρμα καταγράφετε και απεικονίζεται σε κατανοητά γραφήματα."
|
1131 |
+
|
1132 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
|
1133 |
+
msgid "Styles Builder"
|
1134 |
+
msgstr "Κατασκευαστής Στυλ"
|
1135 |
+
|
1136 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1137 |
+
msgid "Create beautiful form themes with ease."
|
1138 |
+
msgstr "Δημιουργήστε όμορφα θέματα για τις φόρμες με ευκολία."
|
1139 |
+
|
1140 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
|
1141 |
+
msgid "Upgrade Now"
|
1142 |
+
msgstr "Αναβάθμιση Τώρα"
|
1143 |
+
|
1144 |
+
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1145 |
+
msgid "View Demo"
|
1146 |
+
msgstr "Δείτε μια Επίδειξη"
|
1147 |
+
|
1148 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
|
1149 |
msgid "Documentation"
|
1150 |
+
msgstr "Τεκμηρίωση"
|
1151 |
|
1152 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:240
|
1153 |
msgid "Save Form"
|
1154 |
+
msgstr "Αποθηκεύστε τη Φόρμα"
|
1155 |
|
1156 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:244
|
1157 |
msgid "Update Form"
|
1158 |
+
msgstr "Ανανεώστε τη Φόρμα"
|
1159 |
|
1160 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:295
|
1161 |
msgid "Back to general form settings"
|
1162 |
+
msgstr "Πίσω στις γενικές ρυθμίσεις φόρμας"
|
1163 |
|
1164 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:297
|
1165 |
msgid "Form updated."
|
1166 |
+
msgstr "Η φόρμα ανανεώθηκε."
|
1167 |
|
1168 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:298
|
1169 |
msgid "Form saved."
|
1170 |
+
msgstr "Η φόρμα αποθηκεύτηκε."
|
1171 |
|
1172 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:365
|
1173 |
msgid "Optional Settings"
|
1174 |
+
msgstr "Προαιρετικές Ρυθμίσεις"
|
1175 |
|
1176 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
|
1177 |
+
msgid "MailChimp & Plugin License Settings"
|
1178 |
+
msgstr "Ρυθμίσεις αδειών του MailChimp & του πρόσθετου"
|
1179 |
|
1180 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
|
1181 |
msgid "MailChimp & License"
|
1182 |
+
msgstr "MailChimp & Άδεια"
|
1183 |
|
1184 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:517
|
1185 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:518
|
1186 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
|
1187 |
msgid "Reports"
|
1188 |
+
msgstr "Αναφορές"
|
1189 |
|
1190 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:709
|
1191 |
msgid ""
|
1192 |
"Please make sure the plugin is connected to MailChimp. <a "
|
1193 |
"href=\"%s\">Provide a valid API key.</a>"
|
1194 |
+
msgstr "Παρακαλώ βεβαιωθείτε ότι το πρόσθετο είναι συνδεδεμένο στο MailChimp. <a href=\"%s\">Δώστε ένα έγκυρο κλειδί API.</a>."
|
|
|
|
|
|
|
|
|
1195 |
|
1196 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
|
1197 |
msgid ""
|
1198 |
"You disabled logging using the %s filter. Re-enable it to use the Reports "
|
1199 |
"page."
|
1200 |
+
msgstr "Απενεργοποιήσατε την καταγραφή με το φίλτρο %s. Ενεργοποιήστε το ξανά για να χρησιμοποιήσετε τη σελίδα Αναφορών."
|
1201 |
|
1202 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:840
|
1203 |
msgid ""
|
1204 |
"<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
|
1205 |
+
"settings you set in the Lite version, you can safely <a "
|
1206 |
+
"href=\"%s\">deactivate it now</a>."
|
1207 |
+
msgstr "<strong>Καλωσήλθατε στο MailChimp for WordPress Pro!</strong> Μεταφέραμε τις ρυθμίσεις που έχετε ορίσει στη Lite έκδοση, μπορείτε με ασφάλεια να την <a href=\"%s\">απενεργοποιήσετε τώρα</a>."
|
1208 |
|
1209 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-statistics.php:130
|
1210 |
+
msgid "End date can't be before the start date"
|
1211 |
+
msgstr "Η ημερομηνία λήξης δεν μπορεί να είναι πριν την ημερομηνία έναρξης."
|
1212 |
+
|
1213 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:436
|
1214 |
msgid ""
|
1215 |
"Couldn't create the stylesheet. Manually add the generated CSS to your theme"
|
1216 |
+
" stylesheet or use a plugin like <em>%s</em>."
|
1217 |
+
msgstr "Αδυναμία δημιουργίας του φύλλου στυλ. Εισάγετε με το χέρι το CSS που δημιουργήθηκε στο φύλλο στυλ του θέματός σας ή χρησιμοποιήστε ένα πρόσθετο όπως το <em>%s</em>."
|
1218 |
|
1219 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:437
|
1220 |
msgid "%sShow generated CSS%s"
|
1221 |
+
msgstr "%sΕμφάνιση δημιουργηθέντος CSS%s"
|
1222 |
+
|
1223 |
+
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:447
|
1224 |
+
msgid "The %sCSS Stylesheet%s has been created."
|
1225 |
+
msgstr "Το %sΦύλλο στυλ CSS%s έχει δημιουργηθεί."
|
1226 |
|
1227 |
+
#: mailchimp-for-wordpress-pro/includes/class-form-manager.php:263
|
1228 |
+
msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
|
1229 |
+
msgstr "<strong>Σφάλμα:</strong> Παρακαλώ καθορίστε ένα ID φόρμας. Παράδειγμα: %s."
|
1230 |
+
|
1231 |
+
#: mailchimp-for-wordpress-pro/includes/class-form-manager.php:278
|
1232 |
msgid ""
|
1233 |
+
"<strong>Error:</strong> Sign-up form not found. Please check if you used the"
|
1234 |
+
" correct form ID."
|
1235 |
+
msgstr "<strong>Σφάλμα:</strong> Δεν βρέθηκε φόρμα εγγραφής. Παρακαλούμε ελέγξτε αν χρησιμοποιήσατε το σωστό ID φόρμας."
|
1236 |
|
1237 |
+
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
|
1238 |
+
msgid "IP Address"
|
1239 |
+
msgstr "Διεύθυνση IP"
|
1240 |
+
|
1241 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:199
|
1242 |
+
msgid "New MailChimp Sign-Up"
|
1243 |
+
msgstr "Νέα εγγραφή στο "
|
1244 |
+
|
1245 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:207
|
1246 |
+
msgid "New Sign-Up"
|
1247 |
+
msgstr "Νέα Εγγραφή"
|
1248 |
+
|
1249 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:208
|
1250 |
+
msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
|
1251 |
+
msgstr "<strong>%s</strong> εγγράφηκε σε %s την %s χρησιμοποιώντας τη φόρμα \"%s\"."
|
1252 |
+
|
1253 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:213
|
1254 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:77
|
1255 |
+
msgid "List"
|
1256 |
+
msgstr "Λίστα"
|
1257 |
+
|
1258 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:253
|
1259 |
+
msgid "Other fields"
|
1260 |
+
msgstr "Άλλα πεδία"
|
1261 |
+
|
1262 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:275
|
1263 |
+
msgid ""
|
1264 |
+
"Note that you've enabled double opt-in for the \"%s\" form. The user won't "
|
1265 |
+
"be added to the selected MailChimp lists until they confirm their email "
|
1266 |
+
"address."
|
1267 |
+
msgstr "Σημειώστε ότι έχετε ενεργοποιήσει τη διπλή επιβεβαίωση για τη φόρμα \"%s\". Ο χρήστης δεν θα προστεθεί στις επιλεγμένες λίστες του MailChimp μέχρι να επιβεβαιώσουν τη διεύθυνση ηλ. ταχυδρομείου τους."
|
1268 |
+
|
1269 |
+
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:277
|
1270 |
+
msgid "This email was auto-sent by the MailChimp for WordPress plugin."
|
1271 |
+
msgstr "Αυτό το μήνυμα ηλ. ταχυδρομείου στάλθηκε αυτόματα από το πρόσθετο MailChimp for WordPress."
|
1272 |
+
|
1273 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1274 |
+
msgid "MailChimp for WP Form"
|
1275 |
+
msgstr "Φόρμα του MailChimp for WP"
|
1276 |
+
|
1277 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:21
|
1278 |
+
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
1279 |
+
msgstr "Εμφανίζει μια από τις φόρμες σας εγγραφής του MailChimp για WordPress"
|
1280 |
+
|
1281 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:43
|
1282 |
+
msgid ""
|
1283 |
+
"Please select the sign-up form you'd like to show here in the <a "
|
1284 |
+
"href=\"%s\">widget settings</a>."
|
1285 |
+
msgstr "Παρακαλούμε επιλέξτε της φόρμα εγγραφής που θα θέλατε να εμφανίζεται εδώ στις <a href=\"%s\">ρυθμίσεις για widget</a>."
|
1286 |
+
|
1287 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:86
|
1288 |
+
msgid "Form:"
|
1289 |
+
msgstr "Φόρμα:"
|
1290 |
|
1291 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:88
|
1292 |
+
msgid "Select the form to show"
|
1293 |
+
msgstr "Επιλέξτε τη φόρμα που θα εμφανίζεται"
|
1294 |
+
|
1295 |
+
#: mailchimp-for-wordpress-pro/includes/class-widget.php:96
|
1296 |
+
msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
|
1297 |
+
msgstr "Δεν έχετε φόρμες εγγραφής. <a href=\"%s\">Δημιουργήστε μία τώρα.</a>"
|
1298 |
+
|
1299 |
+
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:34
|
1300 |
+
msgid ""
|
1301 |
+
"Thank you, your sign-up request was successful! Please check your email "
|
1302 |
+
"inbox to confirm."
|
1303 |
+
msgstr "Σας ευχαριστούμε, το αίτημά σας για εγγραφή ήταν επιτυχές! Παρακαλούμε ελέγξτε τα εισερχόμενα του email σας για την επιβεβαίωση."
|
1304 |
+
|
1305 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:144
|
1306 |
msgid "I know. Don't bug me."
|
1307 |
+
msgstr "Το ξέρω. Μην με ενοχλείτε."
|
1308 |
|
1309 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:163
|
1310 |
msgid ""
|
1311 |
"<b>Warning!</b> You're blocking external requests which means you won't be "
|
1312 |
"able to get %s updates. Please add %s to %s."
|
1313 |
+
msgstr "<b>Προσοχή!</b> Μπλοκάρετε εξωτερικά αιτήματα που σημαίνει ότι δεν θα μπρείτε να λαμβάνετε ενημερώσεις %s. Παρακαλούμε προσθέστε %s σε %s."
|
1314 |
|
1315 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
|
1316 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1317 |
+
msgstr "Η %s άδειά σας έχει ενεργοποιηθεί. Έχετε απεριόριστη άδεια."
|
1318 |
|
1319 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
|
1320 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
1321 |
+
msgstr "Η %s άδειά σας έχει ενεργοποιηθεί. Έχετε χρησιμοποιήσει %d/%d ενεργοποιήσεις."
|
1322 |
|
1323 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
|
1324 |
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
1325 |
+
msgstr "<a href=\"%s\">Γνωρίζατε ότι μπορείτε να αναβαθμίσετε την άδειά σας;</a>"
|
1326 |
|
1327 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
|
1328 |
msgid ""
|
1329 |
"<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
|
1330 |
" it?</a>"
|
1331 |
+
msgstr "<a href=\"%s\">Η άδειά σας λήγει σε %d ημέρες, θα θέλατε να την επεκτείνετε;</a>"
|
1332 |
|
1333 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:225
|
1334 |
msgid ""
|
1335 |
"You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
|
1336 |
"<a href=\"%s\">upgrade your license</a> to use it on this site."
|
1337 |
+
msgstr "Έχετε φτάσει το όριό σας ενεργοποίησης. Πρέπει να <a href=\"%s\">επαναφέρετε</a> ή να <a href=\"%s\">αναβαθμίσετε την άδειά σας</a> για να τη χρησιμοποιήσετε σε αυτό τον ιστότοπο."
|
1338 |
|
1339 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:229
|
1340 |
msgid ""
|
1341 |
"Your license has expired. You must <a href=\"%s\">renew your license</a> if "
|
1342 |
"you want to use it again."
|
1343 |
+
msgstr "Η άδειά σας έχει λήξει. Πρέπει να <a href=\"%s\">ανανεώσετε την άδειά σας</a> αν θέλετε να τη χρησιμοποιήσετε ξανά."
|
1344 |
|
1345 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
|
1346 |
msgid "Failed to activate your license, your license key seems to be invalid."
|
1347 |
+
msgstr "Αποτυχία ενεργοποίησης της άδειάς σας, το κλειδί σας ενεργοποίησης φαίνεται ότι δεν είναι έγκυρο."
|
1348 |
|
1349 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
|
1350 |
msgid "Your %s license has been deactivated."
|
1351 |
+
msgstr "Η %s άδειά σας έχει απενεργοποιηθεί."
|
1352 |
|
1353 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:262
|
1354 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:66
|
1355 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
|
1356 |
msgid ""
|
1357 |
"Your plugin license has expired. You will no longer have access to plugin "
|
1358 |
"updates unless you <a href=\"%s\">renew your license</a>."
|
1359 |
+
msgstr "Η άδεια του προσθέτου σας έχει λήξει. Δεν θα έχετε πλέον ενημερώσεις του πρόσθετου εκτός αν <a href=\"%s\">ανανεώσετε την άδειά σας</a>."
|
1360 |
|
1361 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1362 |
msgid "Failed to deactivate your %s license."
|
1363 |
+
msgstr "Αποτυχία απενεργοποίησης της %s άδειάς σας."
|
1364 |
|
1365 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
|
1366 |
msgid "Request error: \"%s\""
|
1367 |
+
msgstr "Σφάλμα αιτήματος: "
|
1368 |
|
1369 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:461
|
1370 |
msgid "%s: License Settings"
|
1371 |
+
msgstr "%s: Ρυθμίσεις Αδειών"
|
1372 |
|
1373 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-plugin-license-manager.php:67
|
1374 |
msgid ""
|
1375 |
"%s is network activated, please contact your site administrator to manage "
|
1376 |
"the license."
|
1377 |
+
msgstr "%s ενεργοποιείται μέσω διαδικτύου, παρακαλούμε επικοινωνήστε με το διαχειριστή του ιστοτόπου σας για να διαχιεριστείτε την άδεια."
|
1378 |
|
1379 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:64
|
1380 |
msgid ""
|
1381 |
"%s failed to check for updates because of the following error: <em>%s</em>"
|
1382 |
+
msgstr "%s απέτυχε να ελέγξει για ενημερώσεις εξαιτίας του ακόλουθου σφάλματος: "
|
1383 |
|
1384 |
+
#: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:126
|
1385 |
msgid ""
|
1386 |
+
"This site has not been activated properly on mc4wp.com and thus cannot check"
|
1387 |
+
" for future updates. Please activate your site with a valid license key."
|
1388 |
+
msgstr "Αυτός ο ιστότοπος δεν έχει ενεργοποιηθεί σωστά στο mc4wp.com και έτσι δεν μπορεί να ελέγξει για ενημερώσεις. Παρακαλούμε ενεργοποιήστε τον ιστότοπό σας με ένα έγκυρο κλειδί άδειας."
|
|
|
1389 |
|
1390 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:23
|
1391 |
msgid "License status"
|
1392 |
+
msgstr "Κατάστασης άδειας"
|
1393 |
|
1394 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
|
1395 |
msgid "ACTIVE"
|
1396 |
+
msgstr "ΕΝΕΡΓΗ"
|
1397 |
|
1398 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
|
1399 |
msgid "you are receiving updates"
|
1400 |
+
msgstr "λαμβάνετε ενημερώσεις"
|
1401 |
|
1402 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
|
1403 |
msgid "EXPIRED"
|
1404 |
+
msgstr "ΕΛΗΞΕ"
|
1405 |
|
1406 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
|
1407 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
|
1408 |
msgid "you are <strong>not</strong> receiving updates."
|
1409 |
+
msgstr "<strong>δεν</strong> λαμβάνετε ενημερώσεις."
|
1410 |
|
1411 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
|
1412 |
msgid "INACTIVE"
|
1413 |
+
msgstr "ΑΝΕΝΕΡΓΗ"
|
1414 |
|
1415 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:35
|
1416 |
msgid "Toggle license status"
|
1417 |
+
msgstr "Εναλλαγή κατάστασης άδειας"
|
1418 |
|
1419 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:39
|
1420 |
msgid "Deactivate License"
|
1421 |
+
msgstr "Απενεργοποίηση άδειας"
|
1422 |
|
1423 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:40
|
1424 |
msgid ""
|
1425 |
"(deactivate your license so you can activate it on another WordPress site)"
|
1426 |
+
msgstr "(απενεργοποιήστε την άδειά σας για να την ενεργοποιήσετε σε άλλο ιστότοπο του WordPress)"
|
1427 |
|
1428 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:44
|
1429 |
msgid "Activate License"
|
1430 |
+
msgstr "Eνεργοποίηση Άδειας"
|
1431 |
|
1432 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:46
|
1433 |
msgid "Please enter a license key in the field below first."
|
1434 |
+
msgstr "Παρακαλούμε εισάγετε πρώτα ένα κλειδί αδείας στο πεδίο παρακάτω."
|
1435 |
|
1436 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:54
|
1437 |
msgid "License Key"
|
1438 |
+
msgstr "Κλειδί Άδειας"
|
1439 |
|
1440 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:56
|
1441 |
msgid "Paste your license key here, as found in the email receipt."
|
1442 |
+
msgstr "Επικολλήστε το κλειδί της άδειάς σας εδώ, όπως ακριβώς είναι στην απόδειξη στο μήνυμα."
|
1443 |
|
1444 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:78
|
|
|
|
|
|
|
|
|
1445 |
msgid "Your %s license will expire on %s."
|
1446 |
+
msgstr "Η %s άδειά σας θα λήξει στις "
|
1447 |
|
1448 |
+
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:82
|
1449 |
msgid "%sRenew your license now%s."
|
1450 |
+
msgstr "%sΑνανεώστε την άδειά σας τώρα%s."
|
1451 |
|
1452 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:49
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1453 |
msgid "ID"
|
1454 |
+
msgstr "ID"
|
1455 |
|
1456 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:50
|
1457 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:462
|
1458 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:498
|
1459 |
msgid "Form"
|
1460 |
+
msgstr "Φόρμα"
|
1461 |
|
1462 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:51
|
1463 |
msgid "Shortcode"
|
1464 |
+
msgstr "Σύντομος Κώδικας"
|
1465 |
|
1466 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:52
|
1467 |
msgid "List(s)"
|
1468 |
+
msgstr "Λίστα(ες)"
|
1469 |
|
1470 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:53
|
1471 |
msgid "Last edited"
|
1472 |
+
msgstr "Τελευταία επεξεργασία"
|
1473 |
|
1474 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:104
|
1475 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:108
|
1476 |
msgid "Edit Form"
|
1477 |
+
msgstr "Αλλαγή Φόρμας"
|
1478 |
|
1479 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:105
|
1480 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:290
|
1481 |
msgid "Delete"
|
1482 |
+
msgstr "Διαγραφή"
|
1483 |
|
1484 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
|
1485 |
msgid "No MailChimp list(s) selected yet."
|
1486 |
+
msgstr "Δεν έχουν επιλεγεί ακόμα λίστες του MailChimp."
|
1487 |
|
1488 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
|
1489 |
msgid "You have not created any sign-up forms yet. Time to do so!"
|
1490 |
+
msgstr "Δεν έχετε δημιουργήσει ακόμα φόρμες εγγραφής. Καιρός να το κάνετε!"
|
1491 |
|
1492 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:46
|
1493 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1494 |
+
msgid "Log"
|
1495 |
+
msgstr "Καταγραφή"
|
1496 |
|
1497 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
|
1498 |
+
msgid "Log Items"
|
1499 |
+
msgstr "Στοιχεία Καταγραφής"
|
1500 |
|
1501 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
|
1502 |
msgid "Email"
|
1503 |
+
msgstr "Email"
|
1504 |
+
|
1505 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:78
|
1506 |
+
msgid "Data"
|
1507 |
+
msgstr "Δεδομένα"
|
1508 |
+
|
1509 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
|
1510 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
|
1511 |
+
msgid "Success"
|
1512 |
+
msgstr "Επιτυχία"
|
1513 |
|
1514 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:80
|
1515 |
msgid "Type"
|
1516 |
+
msgstr "Τύπος"
|
1517 |
|
1518 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:81
|
1519 |
msgid "Source"
|
1520 |
+
msgstr "Πηγή"
|
1521 |
|
1522 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:82
|
|
|
|
|
|
|
|
|
1523 |
msgid "Subscribed"
|
1524 |
+
msgstr "Εγγεγραμμένοι"
|
1525 |
|
1526 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:150
|
1527 |
msgid "Log items deleted."
|
1528 |
+
msgstr "Τα στοιχεία καταγραφής διαγράφηκαν."
|
1529 |
|
1530 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1531 |
msgid "Registration"
|
1532 |
+
msgstr "Εγγραφή"
|
1533 |
|
1534 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
|
1535 |
+
msgid "Top Bar"
|
1536 |
+
msgstr "Μπάρα Κορυφής"
|
1537 |
|
1538 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
|
1539 |
+
msgid "MultiSite registration"
|
1540 |
+
msgstr "Εγγραφή MultiSite"
|
|
|
1541 |
|
1542 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
|
1543 |
msgid "Contact Form 7"
|
1544 |
+
msgstr "Contact Form 7"
|
1545 |
|
1546 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
|
1547 |
msgid "bbPress: New Topic"
|
1548 |
+
msgstr "bbPress: Νέο Θέμα"
|
1549 |
|
1550 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
|
1551 |
msgid "bbPress: New Reply"
|
1552 |
+
msgstr "bbPress: Νέα Απάντηση"
|
1553 |
|
1554 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
|
1555 |
msgid "Other Form"
|
1556 |
+
msgstr "Άλλη Φόρμα"
|
1557 |
|
1558 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
|
1559 |
msgid "No subscribe requests found."
|
1560 |
+
msgstr "Δεν βρέθηκαν αιτήματα εγγραφής."
|
1561 |
|
1562 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
|
1563 |
msgid "All"
|
1564 |
+
msgstr "Όλα"
|
1565 |
|
1566 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
|
1567 |
msgid "Checkbox"
|
1568 |
+
msgstr "Checkbox"
|
1569 |
+
|
1570 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
|
1571 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
|
1572 |
+
msgid "Order"
|
1573 |
+
msgstr "Σειρά"
|
1574 |
+
|
1575 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
|
1576 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
|
1577 |
+
msgid "Checkout"
|
1578 |
+
msgstr "Ολοκλήρωση"
|
1579 |
+
|
1580 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1581 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
|
1582 |
+
msgid "Comment"
|
1583 |
+
msgstr "Σχόλιο"
|
1584 |
+
|
1585 |
+
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1586 |
+
msgid "deleted"
|
1587 |
+
msgstr "διαγράφηκε"
|
1588 |
|
1589 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
|
1590 |
msgid ""
|
1591 |
"Any settings you specify here will override the <a href=\"%s\">general form "
|
1592 |
"settings</a>. If no setting is specified, the corresponding general setting "
|
1593 |
"value will be used."
|
1594 |
+
msgstr "Όποιες ρυθμίσεις κάνετε εδώ θα υπερισχύσουν των <a href=\"%s\">γενικών ρυθμίσεων φορμών</a>. Αν δεν καθορισθεί κάποια ρύθμιση εδώ, θα χρησιμοποιηθεί η αντίστοιχη τιμή από τις γενικές ρυθμίσεις."
|
1595 |
|
1596 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
|
1597 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
|
1600 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
|
1601 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
|
1602 |
msgid "Inherit"
|
1603 |
+
msgstr "Κληρονόμηση"
|
1604 |
|
1605 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
|
1606 |
msgid "Send an email copy of the form data?"
|
1607 |
+
msgstr "Αποστολή με e-mail ενός αντιγράφου των δεδομένων της φόρμας;"
|
1608 |
|
1609 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
|
1610 |
msgid ""
|
1611 |
"Tick \"yes\" if you want to receive an email with the form data for every "
|
1612 |
"sign-up request."
|
1613 |
+
msgstr "Τσεκάρετε το \"ναι\" αν θέλετε να λαμβάνετε ένα μήνυμα ηλ. ταχυδρομείου με τα δεδομένα της φόρμας για κάθε αίτημα εγγραφής."
|
1614 |
|
1615 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
|
1616 |
msgid "Send the copy to this email:"
|
1617 |
+
msgstr "Αποστολή του αντιγράφου σε αυτό το e-mail:"
|
1618 |
|
1619 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
|
1620 |
msgid "Messages"
|
1621 |
+
msgstr "Μηνύματα"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1622 |
|
1623 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:190
|
1624 |
+
msgid "Other errors"
|
1625 |
+
msgstr "Άλλα σφάλματα"
|
|
|
1626 |
|
1627 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
|
1628 |
+
msgid "Submit button"
|
1629 |
+
msgstr "Κουμπί υποβολής"
|
|
|
1630 |
|
1631 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1632 |
+
msgid "Subscribe / unsubscribe action"
|
1633 |
+
msgstr "Ενέργεια Εγγραφής/Απεγγραφής"
|
|
|
|
|
|
|
|
|
|
|
|
|
1634 |
|
1635 |
+
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1636 |
msgid "Form usage"
|
1637 |
+
msgstr "Χρήση φόρμας"
|
1638 |
+
|
1639 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
|
1640 |
+
msgid ""
|
1641 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
1642 |
+
" is sent."
|
1643 |
+
msgstr "Επιλέξτε \"ναι\" αν θέλετε να ενημερώσετε τους υπάρχοντες συνδρομητές με τα δεδομένα που στάλθηκαν."
|
1644 |
|
1645 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:100
|
1646 |
msgid ""
|
1647 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1648 |
"forms."
|
1649 |
+
msgstr "Χρησιμοποιήστε %s στον κώδικα της Contact Form 7 σας για να προσθέστε ένα checkbox εγγραφής στις CF7 φόρμες σας."
|
1650 |
|
1651 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
|
1652 |
msgid "Custom label texts"
|
1653 |
+
msgstr "Προσαρμοσμένα κείμενα ετικετών"
|
1654 |
|
1655 |
+
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
|
1656 |
msgid ""
|
1657 |
"Override the default checkbox label text for any given checkbox using the "
|
1658 |
"fields below."
|
1659 |
+
msgstr "Παράβλεψη του προεπιλεγμένου κειμένου ετικέτας checkbox για οποιοδήποτε από αυτά με χρήση των παρακάτω πεδίων."
|
1660 |
|
1661 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
|
1662 |
msgid "Forms & Settings"
|
1663 |
+
msgstr "Φόρμες και ρυθμίσεις"
|
1664 |
|
1665 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
|
1666 |
msgid "CSS Styles Builder"
|
1667 |
+
msgstr "Κατασκευαστής Στυλ CSS"
|
1668 |
|
1669 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
|
1670 |
msgid "License & API Settings"
|
1671 |
+
msgstr "Ρυθμίσεις Άδειας & API"
|
1672 |
|
1673 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
|
1674 |
msgid "No lists were found in your MailChimp account."
|
1675 |
+
msgstr "Δεν βρέθηκαν λίστες στον λογαριασμό σας στο MailChimp."
|
1676 |
|
1677 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1678 |
msgid ""
|
1679 |
"Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
|
1680 |
+
"email us directly at <a href=\"%s\">support@mc4wp.com</a>."
|
1681 |
+
msgstr "Χρειάζεστε βοήθεια; Ρίξτε μια ματιά στην <a href=\"%s\">τεκμηρίωση του πρόσθετου</a> ή επικοινωνήστε απευθείας μαζί μας στο <a href=\"%s\">support@mc4wp.com</a>."
|
1682 |
|
1683 |
+
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1684 |
+
msgid ""
|
1685 |
+
"Please use the same email address as you used when purchasing the plugin."
|
1686 |
+
msgstr "Παρακαλούμε χρησιμοποιήστε την ίδια διεύθυνση ηλ. ταχυδρομείου με την οποία αγοράσατε το πρόσθετο."
|
1687 |
+
|
1688 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1689 |
msgid "Use the fields below to create custom styling rules for your forms."
|
1690 |
+
msgstr "Χρησιμοποιήστε τα παρακάτω πεδία για να δημιουρφήσετε προσαρμοσμένου κανόνες διαμόρφωσης στυλ για τις φόρμες σας."
|
1691 |
|
1692 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:16
|
1693 |
+
msgid ""
|
1694 |
+
"Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
|
1695 |
+
"href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
|
1696 |
+
"form</a> in general."
|
1697 |
+
msgstr "Συμβουλή: ρίξτε μια ματιά στα άρθρα της <a href=\"%s\">γνωσιακής μας βάσης</a> για <a href=\"%s\">δημιουργία inline φόρμας</a> ή γενικά <a href=\"%s\">διαμόρφωση στυλ της φόρμας σας</a>."
|
1698 |
+
|
1699 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
|
1700 |
+
msgid ""
|
1701 |
+
"You are not loading your custom stylesheet at this moment. To apply these "
|
1702 |
+
"styles on your site, select \"load custom form styles\" in the <a "
|
1703 |
+
"href=\"%s\">MailChimp for WordPress form settings</a>."
|
1704 |
+
msgstr "Δεν γίνεται φόρτωση των προσαρμοσμένων σας φύλλων στυλ αυτή τη στιγμή. Για να εφαρμοστούν αυτά τα στυλ στον ιστότοπό σας, επιλέξτε \"φόρτωση προσαρμοσμένων στυλ φόρμας\" στις <a href=\"%s\">ρυθμίσεις φόρμας του MailChimp for WordPress</a>."
|
1705 |
+
|
1706 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:30
|
1707 |
msgid "Select form to build styles for:"
|
1708 |
+
msgstr "Επιλέξτε τη φόρμα για την οποία θα φτιάξετε στυλ:"
|
1709 |
|
1710 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
|
1711 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
|
1712 |
msgid "Create at least one form first."
|
1713 |
+
msgstr "Δημιουργήστε τουλάχιστον μία φόρμα πρώτα."
|
1714 |
|
1715 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
|
1716 |
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1717 |
+
msgstr "Πρέπει να είναι ενεργοποιημένη η JavaScript για να δείτε μια προεπισκόπηση της φόρμας σας."
|
1718 |
+
|
1719 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1720 |
+
msgid "Form container style"
|
1721 |
+
msgstr "Στυλ περιέκτη φόρμας"
|
1722 |
+
|
1723 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1724 |
+
msgid "Form width"
|
1725 |
+
msgstr "Πλάτος φόρμας"
|
1726 |
+
|
1727 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1728 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1729 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1730 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1731 |
+
msgid "px or %"
|
1732 |
+
msgstr "px ή %"
|
1733 |
+
|
1734 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1735 |
+
msgid "Text alignment"
|
1736 |
+
msgstr "Ευθυγράμμιση κειμένου"
|
1737 |
+
|
1738 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1739 |
+
msgid "Choose alignment"
|
1740 |
+
msgstr "Επιλέξτε ευθυγράμμιση"
|
1741 |
+
|
1742 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1743 |
+
msgid "Left"
|
1744 |
+
msgstr "Αριστερά"
|
1745 |
+
|
1746 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1747 |
+
msgid "Center"
|
1748 |
+
msgstr "Κεντραρισμένο"
|
1749 |
+
|
1750 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1751 |
+
msgid "Right"
|
1752 |
+
msgstr "Δεξιά"
|
1753 |
+
|
1754 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1755 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1756 |
+
msgid "Background color"
|
1757 |
+
msgstr "Χρώμα φόντου"
|
1758 |
+
|
1759 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1760 |
+
msgid "Padding"
|
1761 |
+
msgstr "Απόσταση"
|
1762 |
+
|
1763 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
|
1764 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1765 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1766 |
+
msgid "Border color"
|
1767 |
+
msgstr "Χρώμα περιγράμματος"
|
1768 |
+
|
1769 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1770 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1771 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1772 |
+
msgid "Border width"
|
1773 |
+
msgstr "Πλάτος περιγράμματος"
|
1774 |
+
|
1775 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1776 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1777 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1778 |
+
msgid "Text color"
|
1779 |
+
msgstr "Χρώμα κειμένου"
|
1780 |
+
|
1781 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1782 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1783 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1784 |
+
msgid "Text size"
|
1785 |
+
msgstr "Μέγεθος κειμένου"
|
1786 |
+
|
1787 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1788 |
+
msgid "Background image"
|
1789 |
+
msgstr "Εικόνα φόντου"
|
1790 |
+
|
1791 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1792 |
+
msgid "Label styles"
|
1793 |
+
msgstr "Στυλ Ετικετών"
|
1794 |
+
|
1795 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1796 |
+
msgid "Label width"
|
1797 |
+
msgstr "Πλάτος ετικέτας"
|
1798 |
+
|
1799 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1800 |
+
msgid "Text style"
|
1801 |
+
msgstr "Στυλ Κειμένου"
|
1802 |
+
|
1803 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1804 |
+
msgid "Choose text style.."
|
1805 |
+
msgstr "Επιλέξτε το στυλ του κειμένου.."
|
1806 |
+
|
1807 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1808 |
+
msgid "Normal"
|
1809 |
+
msgstr "Κανονικά"
|
1810 |
+
|
1811 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1812 |
+
msgid "Bold"
|
1813 |
+
msgstr "Έντονα"
|
1814 |
+
|
1815 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1816 |
+
msgid "Italic"
|
1817 |
+
msgstr "Πλάγια"
|
1818 |
+
|
1819 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1820 |
+
msgid "Bold & Italic"
|
1821 |
+
msgstr "Έντονα και πλάγια"
|
1822 |
+
|
1823 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1824 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1825 |
+
msgid "Display"
|
1826 |
+
msgstr "Εμφάνιση"
|
1827 |
+
|
1828 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
|
1829 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
|
1830 |
+
msgid "Inline"
|
1831 |
+
msgstr "Εντός γραμμής"
|
1832 |
+
|
1833 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
|
1834 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
|
1835 |
+
msgid "New line"
|
1836 |
+
msgstr "Νέα γραμμή"
|
1837 |
+
|
1838 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1839 |
+
msgid "Field styles"
|
1840 |
+
msgstr "Στυλ πεδίων"
|
1841 |
+
|
1842 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1843 |
+
msgid "Field width"
|
1844 |
+
msgstr "Πλάτος πεδίου"
|
1845 |
+
|
1846 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1847 |
+
msgid "Field height"
|
1848 |
+
msgstr "Ύψος πεδίου"
|
1849 |
+
|
1850 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1851 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1852 |
+
msgid "Border radius"
|
1853 |
+
msgstr "Ακτίνα περιγράμματος"
|
1854 |
+
|
1855 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1856 |
+
msgid "Focus outline"
|
1857 |
+
msgstr "Εστίαση περιγράμματος"
|
1858 |
+
|
1859 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
|
1860 |
+
msgid "Button styles"
|
1861 |
+
msgstr "Στυλ κουμπιών"
|
1862 |
+
|
1863 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1864 |
+
msgid "Button width"
|
1865 |
+
msgstr "Πλάτος κουμπιού"
|
1866 |
+
|
1867 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1868 |
+
msgid "Button height"
|
1869 |
+
msgstr "Ύψος κουμπιού"
|
1870 |
+
|
1871 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1872 |
+
msgid "Error and success messages"
|
1873 |
+
msgstr "Μηνύματα επιτυχίας και σφάλματος"
|
1874 |
+
|
1875 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1876 |
+
msgid "Success text color"
|
1877 |
+
msgstr "Χρώμα κειμένου επιτυχίας"
|
1878 |
+
|
1879 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1880 |
+
msgid "Error text color"
|
1881 |
+
msgstr "Χρώμα κειμένου σφάλματος"
|
1882 |
+
|
1883 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1884 |
+
msgid "Advanced"
|
1885 |
+
msgstr "Προχωρημένες"
|
1886 |
+
|
1887 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1888 |
+
msgid "CSS Selector Prefix"
|
1889 |
+
msgstr "Πρόσημο Επιλογέα CSS"
|
1890 |
+
|
1891 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1892 |
+
msgid ""
|
1893 |
+
"Use this to create a more specific (and thus more \"important\") CSS "
|
1894 |
+
"selector."
|
1895 |
+
msgstr "Επιλέξτε το για να δημιουργήσετε έναν πιο εξειδικευμένο (άρα και πιο \"σημαντικό\") επιλογέα CSS."
|
1896 |
+
|
1897 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1898 |
+
msgid "Manual CSS"
|
1899 |
+
msgstr "Χειροκίνητο CSS"
|
1900 |
+
|
1901 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1902 |
+
msgid ""
|
1903 |
+
"The CSS rules you enter here will be appended to the custom stylesheet."
|
1904 |
+
msgstr "Οι κανόνες CSS που εισάγετε εδώ θα προστεθούν στο προσαρμοσμένο φύλλο στυλ."
|
1905 |
+
|
1906 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1907 |
+
msgid "Copy styles from other form"
|
1908 |
+
msgstr "Αντιγραφή στυλ από άλλη φόρμα"
|
1909 |
+
|
1910 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1911 |
+
msgid "Copy Styles"
|
1912 |
+
msgstr "Αντιγραφή Στυλ"
|
1913 |
|
1914 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1915 |
+
msgid ""
|
1916 |
+
"Are you sure you want to copy form styles from another form? This will "
|
1917 |
+
"overwrite current styles for this form."
|
1918 |
+
msgstr "Είστε σίγουροι ότι θέλετε να αντιγράψετε τα στυλ φόρμας από άλλη φόρμα; Αυτό θα αντικαταστήσει τα υπάρχοντα στυλ σε αυτή τη φόρμα."
|
1919 |
+
|
1920 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1921 |
msgid "Are you sure you want to delete all custom styles for this form?"
|
1922 |
+
msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε όλα τα προσαρμοσμένα στυλ για αυτή τη φόρμα;"
|
1923 |
|
1924 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1925 |
msgid "Delete Form Styles"
|
1926 |
+
msgstr "Διαγραφή Στυλ Φόρμας"
|
1927 |
|
1928 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1929 |
+
msgid "Form preview"
|
1930 |
+
msgstr "Προεπισκόπηση φόρμας"
|
|
|
|
|
|
|
|
|
1931 |
|
1932 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1933 |
msgid "Sign-Up Forms"
|
1934 |
+
msgstr "Φόρμες Εγγραφής"
|
1935 |
|
1936 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1937 |
msgid "Create New Form"
|
1938 |
+
msgstr "Δημιουργία Νέας Φόρμας"
|
1939 |
|
1940 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1941 |
msgid "General form settings"
|
1942 |
+
msgstr "Γενικές ρυθμίσεις φόρμας"
|
1943 |
|
1944 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1945 |
msgid ""
|
1946 |
"If you %screated a custom stylesheet%s and want it to be loaded, select "
|
1947 |
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1948 |
" of the default themes."
|
1949 |
+
msgstr "Αν έχετε %sδημιουργήσει ένα προσαρμοσμένο φύλλο στυλ%s και θέλετε να φορτωθεί, επιλέξτε \"προσαρμοσμένα στυλ φόρμας\". Αλλιώς, επιλέξτε τα βασικά στυλ μορφοποίησης ή ένα από τα προκαθορισμένα θέματα."
|
1950 |
|
1951 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1952 |
msgid "Select Color"
|
1953 |
+
msgstr "Επέλεξε χρώμα"
|
1954 |
|
1955 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1956 |
msgid "Save all changes"
|
1957 |
+
msgstr "Σώσε όλες τις αλλαγές"
|
1958 |
|
1959 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1960 |
msgid "Default MailChimp settings"
|
1961 |
+
msgstr "Προεπιλεγμένες ρυθμίσεις του MailChimp "
|
1962 |
|
1963 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
|
1964 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1965 |
msgid ""
|
1966 |
"The following settings apply to <strong>all</strong> forms but can be "
|
1967 |
"overridden on a per-form basis."
|
1968 |
+
msgstr "Οι ακόλουθες ρυθμίσεις εφαρμόζονται σε <strong>όλες</strong> τις φόρμες αλλά μπορούν να παρακαμφθούν για κάθε φόρμα ξεχωριστά."
|
1969 |
|
1970 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
|
1971 |
msgid "Default Form Settings"
|
1972 |
+
msgstr "Προεπιλεγμένες Ρυθμίσεις Φόρμας"
|
1973 |
+
|
1974 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
|
1975 |
+
msgid ""
|
1976 |
+
"Leave empty for no redirect. Otherwise, use complete (absolute) URLs, "
|
1977 |
+
"including <code>http://</code>."
|
1978 |
+
msgstr "Αφήστε το κενό εάν δεν θέλετε να γίνεται ανακατεύθυνση. Διαφορετικά, χρησιμοποιήστε πλήρη (απόλυτα) URL, συμπεριλαμβανομένου <code>http://</code>."
|
1979 |
|
1980 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1981 |
msgid "Default Messages"
|
1982 |
+
msgstr "Προεπιλεγμένα Μηνύματα"
|
1983 |
+
|
1984 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:15
|
1985 |
+
msgid "Today"
|
1986 |
+
msgstr "Σήμερα"
|
1987 |
+
|
1988 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:16
|
1989 |
+
msgid "Yesterday"
|
1990 |
+
msgstr "Χθες"
|
1991 |
+
|
1992 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:17
|
1993 |
+
msgid "Last Week"
|
1994 |
+
msgstr "Προηγούμενη εβδομάδα"
|
1995 |
+
|
1996 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:18
|
1997 |
+
msgid "Last Month"
|
1998 |
+
msgstr "Προηγούμενος μήνας"
|
1999 |
+
|
2000 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:19
|
2001 |
+
msgid "Last Quarter"
|
2002 |
+
msgstr "Προηγούμενο τρίμηνο"
|
2003 |
+
|
2004 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:20
|
2005 |
+
msgid "Last Year"
|
2006 |
+
msgstr "Προηγούμενο έτος"
|
2007 |
+
|
2008 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:21
|
2009 |
+
msgid "Custom"
|
2010 |
+
msgstr "Προσαρμοσμένο"
|
2011 |
+
|
2012 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:25
|
2013 |
+
msgid "From"
|
2014 |
+
msgstr "Από"
|
2015 |
+
|
2016 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:32
|
2017 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:57
|
2018 |
+
msgid "Jan"
|
2019 |
+
msgstr "Ιανουάριος"
|
2020 |
+
|
2021 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:33
|
2022 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:58
|
2023 |
+
msgid "Feb"
|
2024 |
+
msgstr "Φεβρουάριος"
|
2025 |
+
|
2026 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:34
|
2027 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:59
|
2028 |
+
msgid "Mar"
|
2029 |
+
msgstr "Μάρτιος"
|
2030 |
+
|
2031 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:35
|
2032 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:60
|
2033 |
+
msgid "Apr"
|
2034 |
+
msgstr "Απρίλιος"
|
2035 |
+
|
2036 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:36
|
2037 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:61
|
2038 |
+
msgid "May"
|
2039 |
+
msgstr "Μάιος"
|
2040 |
+
|
2041 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:37
|
2042 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:62
|
2043 |
+
msgid "Jun"
|
2044 |
+
msgstr "Ιούνιος"
|
2045 |
+
|
2046 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:38
|
2047 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:63
|
2048 |
+
msgid "Jul"
|
2049 |
+
msgstr "Ιούλιος"
|
2050 |
+
|
2051 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:39
|
2052 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:64
|
2053 |
+
msgid "Aug"
|
2054 |
+
msgstr "Αύγουστος"
|
2055 |
+
|
2056 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:40
|
2057 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:65
|
2058 |
+
msgid "Sep"
|
2059 |
+
msgstr "Σεπτέμβριος"
|
2060 |
+
|
2061 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:41
|
2062 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:66
|
2063 |
+
msgid "Oct"
|
2064 |
+
msgstr "Οκτώβριος"
|
2065 |
+
|
2066 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:42
|
2067 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:67
|
2068 |
+
msgid "Nov"
|
2069 |
+
msgstr "Νοέμβριος"
|
2070 |
+
|
2071 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:43
|
2072 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:68
|
2073 |
+
msgid "Dec"
|
2074 |
+
msgstr "Δεκέμβριος"
|
2075 |
+
|
2076 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:50
|
2077 |
+
msgid "To"
|
2078 |
+
msgstr "Προς"
|
2079 |
+
|
2080 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:76
|
2081 |
+
msgid "Filter"
|
2082 |
+
msgstr "Φίλτρο"
|
2083 |
+
|
2084 |
+
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
|
2085 |
+
msgid "Show these lines:"
|
2086 |
+
msgstr "Εμφάνιση αυτών των γραμμών:"
|
2087 |
|
2088 |
#. Plugin URI of the plugin/theme
|
2089 |
msgid "https://mc4wp.com/"
|
2090 |
+
msgstr "https://mc4wp.com/"
|
2091 |
|
2092 |
#. Description of the plugin/theme
|
2093 |
msgid "Adds various sign-up methods to your website."
|
2094 |
+
msgstr "Προσθέτει διάφορες μεθόδους εγγραφής στον ιστότοπό σας."
|
2095 |
|
2096 |
#. Author of the plugin/theme
|
2097 |
msgid "Danny van Kooten"
|
2098 |
+
msgstr "Danny van Kooten"
|
2099 |
|
2100 |
#. Author URI of the plugin/theme
|
2101 |
msgid "http://dannyvankooten.com"
|
2102 |
+
msgstr "http://dannyvankooten.com"
|
languages/mailchimp-for-wp-es_ES.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-es_ES.po
CHANGED
@@ -15,7 +15,7 @@ msgstr ""
|
|
15 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
16 |
"PO-Revision-Date: 2015-06-26 09:37+0000\n"
|
17 |
"Last-Translator: Carlos Faria <carlosgarciafaria@gmail.com>\n"
|
18 |
-
"Language-Team: Spanish (Spain) (http://www.transifex.com/
|
19 |
"MIME-Version: 1.0\n"
|
20 |
"Content-Type: text/plain; charset=UTF-8\n"
|
21 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
16 |
"PO-Revision-Date: 2015-06-26 09:37+0000\n"
|
17 |
"Last-Translator: Carlos Faria <carlosgarciafaria@gmail.com>\n"
|
18 |
+
"Language-Team: Spanish (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/es_ES/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
20 |
"Content-Type: text/plain; charset=UTF-8\n"
|
21 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-es_PR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-es_PR.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: Spanish (Puerto Rico) (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: Spanish (Puerto Rico) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/es_PR/)\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-fa_IR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fa_IR.po
CHANGED
@@ -9,7 +9,7 @@ msgstr ""
|
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-07-06 11:53+0000\n"
|
11 |
"Last-Translator: A.Mehraban <Mehr.Ban@chmail.ir>\n"
|
12 |
-
"Language-Team: Persian (Iran) (http://www.transifex.com/
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-07-06 11:53+0000\n"
|
11 |
"Last-Translator: A.Mehraban <Mehr.Ban@chmail.ir>\n"
|
12 |
+
"Language-Team: Persian (Iran) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fa_IR/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-fi_FI.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fi_FI.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-22 10:42+0000\n"
|
13 |
"Last-Translator: Juha Vihervaara <juha.vihervaara@nemoy.fi>\n"
|
14 |
-
"Language-Team: Finnish (Finland) (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-22 10:42+0000\n"
|
13 |
"Last-Translator: Juha Vihervaara <juha.vihervaara@nemoy.fi>\n"
|
14 |
+
"Language-Team: Finnish (Finland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fi_FI/)\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-fr_FR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fr_FR.po
CHANGED
@@ -16,7 +16,7 @@ msgstr ""
|
|
16 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
17 |
"PO-Revision-Date: 2015-06-11 18:52+0000\n"
|
18 |
"Last-Translator: dlpscoop <charliebairdjersey@gmail.com>\n"
|
19 |
-
"Language-Team: French (France) (http://www.transifex.com/
|
20 |
"MIME-Version: 1.0\n"
|
21 |
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
17 |
"PO-Revision-Date: 2015-06-11 18:52+0000\n"
|
18 |
"Last-Translator: dlpscoop <charliebairdjersey@gmail.com>\n"
|
19 |
+
"Language-Team: French (France) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fr_FR/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
21 |
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-hu_HU.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-hu_HU.po
CHANGED
@@ -9,7 +9,7 @@ msgstr ""
|
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-06-02 07:31+0000\n"
|
11 |
"Last-Translator: Németh Balázs <nb0000@gmail.com>\n"
|
12 |
-
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-06-02 07:31+0000\n"
|
11 |
"Last-Translator: Németh Balázs <nb0000@gmail.com>\n"
|
12 |
+
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/hu_HU/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-id_ID.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-id_ID.po
CHANGED
@@ -10,7 +10,7 @@ msgstr ""
|
|
10 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
11 |
"PO-Revision-Date: 2015-06-17 08:29+0000\n"
|
12 |
"Last-Translator: Fendi Halim <beliajaonline@gmail.com>\n"
|
13 |
-
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
11 |
"PO-Revision-Date: 2015-06-17 08:29+0000\n"
|
12 |
"Last-Translator: Fendi Halim <beliajaonline@gmail.com>\n"
|
13 |
+
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/id_ID/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-it_IT.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-it_IT.po
CHANGED
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
13 |
"PO-Revision-Date: 2015-07-06 09:27+0000\n"
|
14 |
"Last-Translator: andrea.gatopoulos <andrea.gatopoulos@gmail.com>\n"
|
15 |
-
"Language-Team: Italian (Italy) (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"
|
12 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
13 |
"PO-Revision-Date: 2015-07-06 09:27+0000\n"
|
14 |
"Last-Translator: andrea.gatopoulos <andrea.gatopoulos@gmail.com>\n"
|
15 |
+
"Language-Team: Italian (Italy) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/it_IT/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-nl_NL.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-nl_NL.po
CHANGED
@@ -9,7 +9,7 @@ msgstr ""
|
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-05-26 14:47+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
-
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-05-26 14:47+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
+
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/nl_NL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-pt_BR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-pt_BR.po
CHANGED
@@ -3,15 +3,16 @@
|
|
3 |
# Translators:
|
4 |
# Douglas de Araujo <douglas@ludicaeventos.com.br>, 2015
|
5 |
# Leandro de Santi <leandro.santi@gmail.com>, 2014-2015
|
|
|
6 |
# Ronne Clay Santos <roneclay@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: MailChimp for WordPress\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
11 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
12 |
-
"PO-Revision-Date: 2015-
|
13 |
-
"Last-Translator:
|
14 |
-
"Language-Team: Portuguese (Brazil) (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"
|
@@ -128,7 +129,7 @@ msgstr "Inscrever"
|
|
128 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
129 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
130 |
msgid "Unsubscribe"
|
131 |
-
msgstr ""
|
132 |
|
133 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
134 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
@@ -255,12 +256,12 @@ msgstr "Por favor, preencha os campos necessários."
|
|
255 |
#: mailchimp-for-wordpress/includes/functions/general.php:50
|
256 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
257 |
msgid "You were successfully unsubscribed."
|
258 |
-
msgstr ""
|
259 |
|
260 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
261 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
262 |
msgid "Given email address is not subscribed."
|
263 |
-
msgstr ""
|
264 |
|
265 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
266 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
@@ -745,7 +746,7 @@ msgstr ""
|
|
745 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
746 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
747 |
msgid "Successfully subscribed"
|
748 |
-
msgstr ""
|
749 |
|
750 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
751 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
@@ -876,7 +877,7 @@ msgstr ""
|
|
876 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
877 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
878 |
msgid "Variables"
|
879 |
-
msgstr ""
|
880 |
|
881 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
882 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
@@ -1055,7 +1056,7 @@ msgstr "Este plugin não é desenvolvido ou afiliada com MailChimp de qualquer f
|
|
1055 |
|
1056 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1057 |
msgid "Looking for help?"
|
1058 |
-
msgstr ""
|
1059 |
|
1060 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1061 |
msgid ""
|
@@ -1113,7 +1114,7 @@ msgstr ""
|
|
1113 |
|
1114 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1115 |
msgid "AJAX forms"
|
1116 |
-
msgstr ""
|
1117 |
|
1118 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1119 |
msgid "Forms do not require a full page reload."
|
@@ -1142,7 +1143,7 @@ msgstr "Atualizar Agora"
|
|
1142 |
|
1143 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1144 |
msgid "View Demo"
|
1145 |
-
msgstr ""
|
1146 |
|
1147 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
|
1148 |
msgid "Documentation"
|
@@ -1682,7 +1683,7 @@ msgstr ""
|
|
1682 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1683 |
msgid ""
|
1684 |
"Please use the same email address as you used when purchasing the plugin."
|
1685 |
-
msgstr ""
|
1686 |
|
1687 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1688 |
msgid "Use the fields below to create custom styling rules for your forms."
|
@@ -1721,18 +1722,18 @@ msgstr ""
|
|
1721 |
|
1722 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1723 |
msgid "Form width"
|
1724 |
-
msgstr ""
|
1725 |
|
1726 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1728 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1729 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1730 |
msgid "px or %"
|
1731 |
-
msgstr ""
|
1732 |
|
1733 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1734 |
msgid "Text alignment"
|
1735 |
-
msgstr ""
|
1736 |
|
1737 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1738 |
msgid "Choose alignment"
|
@@ -1740,20 +1741,20 @@ msgstr ""
|
|
1740 |
|
1741 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1742 |
msgid "Left"
|
1743 |
-
msgstr ""
|
1744 |
|
1745 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1746 |
msgid "Center"
|
1747 |
-
msgstr ""
|
1748 |
|
1749 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1750 |
msgid "Right"
|
1751 |
-
msgstr ""
|
1752 |
|
1753 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1754 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1755 |
msgid "Background color"
|
1756 |
-
msgstr ""
|
1757 |
|
1758 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1759 |
msgid "Padding"
|
@@ -1763,29 +1764,29 @@ msgstr ""
|
|
1763 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1764 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1765 |
msgid "Border color"
|
1766 |
-
msgstr ""
|
1767 |
|
1768 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1769 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1770 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1771 |
msgid "Border width"
|
1772 |
-
msgstr ""
|
1773 |
|
1774 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1775 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1776 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1777 |
msgid "Text color"
|
1778 |
-
msgstr ""
|
1779 |
|
1780 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1781 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1782 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1783 |
msgid "Text size"
|
1784 |
-
msgstr ""
|
1785 |
|
1786 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1787 |
msgid "Background image"
|
1788 |
-
msgstr ""
|
1789 |
|
1790 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1791 |
msgid "Label styles"
|
@@ -1797,7 +1798,7 @@ msgstr ""
|
|
1797 |
|
1798 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1799 |
msgid "Text style"
|
1800 |
-
msgstr ""
|
1801 |
|
1802 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1803 |
msgid "Choose text style.."
|
@@ -1805,19 +1806,19 @@ msgstr ""
|
|
1805 |
|
1806 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1807 |
msgid "Normal"
|
1808 |
-
msgstr ""
|
1809 |
|
1810 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1811 |
msgid "Bold"
|
1812 |
-
msgstr ""
|
1813 |
|
1814 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1815 |
msgid "Italic"
|
1816 |
-
msgstr ""
|
1817 |
|
1818 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1819 |
msgid "Bold & Italic"
|
1820 |
-
msgstr ""
|
1821 |
|
1822 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1823 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
@@ -1840,16 +1841,16 @@ msgstr ""
|
|
1840 |
|
1841 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1842 |
msgid "Field width"
|
1843 |
-
msgstr ""
|
1844 |
|
1845 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1846 |
msgid "Field height"
|
1847 |
-
msgstr ""
|
1848 |
|
1849 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1850 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1851 |
msgid "Border radius"
|
1852 |
-
msgstr ""
|
1853 |
|
1854 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1855 |
msgid "Focus outline"
|
@@ -1861,15 +1862,15 @@ msgstr ""
|
|
1861 |
|
1862 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1863 |
msgid "Button width"
|
1864 |
-
msgstr ""
|
1865 |
|
1866 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1867 |
msgid "Button height"
|
1868 |
-
msgstr ""
|
1869 |
|
1870 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1871 |
msgid "Error and success messages"
|
1872 |
-
msgstr ""
|
1873 |
|
1874 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1875 |
msgid "Success text color"
|
@@ -1881,7 +1882,7 @@ msgstr ""
|
|
1881 |
|
1882 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1883 |
msgid "Advanced"
|
1884 |
-
msgstr ""
|
1885 |
|
1886 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1887 |
msgid "CSS Selector Prefix"
|
3 |
# Translators:
|
4 |
# Douglas de Araujo <douglas@ludicaeventos.com.br>, 2015
|
5 |
# Leandro de Santi <leandro.santi@gmail.com>, 2014-2015
|
6 |
+
# Lucas Vilaboim de Figueiredo <luvilaboim@gmail.com>, 2015
|
7 |
# Ronne Clay Santos <roneclay@gmail.com>, 2015
|
8 |
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-05-26 14:41:46+00:00\n"
|
13 |
+
"PO-Revision-Date: 2015-07-29 03:35+0000\n"
|
14 |
+
"Last-Translator: Lucas Vilaboim de Figueiredo <luvilaboim@gmail.com>\n"
|
15 |
+
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pt_BR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
129 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
130 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
131 |
msgid "Unsubscribe"
|
132 |
+
msgstr "Cancelar inscrição"
|
133 |
|
134 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
135 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
256 |
#: mailchimp-for-wordpress/includes/functions/general.php:50
|
257 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
258 |
msgid "You were successfully unsubscribed."
|
259 |
+
msgstr "Sua inscrição foi cancelada com sucesso."
|
260 |
|
261 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
262 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
263 |
msgid "Given email address is not subscribed."
|
264 |
+
msgstr "O e-mail fornecido não está inscrito."
|
265 |
|
266 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
267 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
746 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
747 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
748 |
msgid "Successfully subscribed"
|
749 |
+
msgstr "Inscrição realizada com sucesso"
|
750 |
|
751 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
752 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
877 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
878 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
879 |
msgid "Variables"
|
880 |
+
msgstr "Variáveis"
|
881 |
|
882 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
883 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
1056 |
|
1057 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1058 |
msgid "Looking for help?"
|
1059 |
+
msgstr "Precisando de ajuda?"
|
1060 |
|
1061 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1062 |
msgid ""
|
1114 |
|
1115 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1116 |
msgid "AJAX forms"
|
1117 |
+
msgstr "Formulários AJAX"
|
1118 |
|
1119 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1120 |
msgid "Forms do not require a full page reload."
|
1143 |
|
1144 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1145 |
msgid "View Demo"
|
1146 |
+
msgstr "Ver demonstração"
|
1147 |
|
1148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
|
1149 |
msgid "Documentation"
|
1683 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1684 |
msgid ""
|
1685 |
"Please use the same email address as you used when purchasing the plugin."
|
1686 |
+
msgstr "Por favor, use o mesmo e-mail usado na compra do plugin."
|
1687 |
|
1688 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1689 |
msgid "Use the fields below to create custom styling rules for your forms."
|
1722 |
|
1723 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1724 |
msgid "Form width"
|
1725 |
+
msgstr "Largura do formulário"
|
1726 |
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1728 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1729 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1730 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1731 |
msgid "px or %"
|
1732 |
+
msgstr "px ou %"
|
1733 |
|
1734 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1735 |
msgid "Text alignment"
|
1736 |
+
msgstr "Alinhamento do texto"
|
1737 |
|
1738 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1739 |
msgid "Choose alignment"
|
1741 |
|
1742 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1743 |
msgid "Left"
|
1744 |
+
msgstr "Esquerda"
|
1745 |
|
1746 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1747 |
msgid "Center"
|
1748 |
+
msgstr "Centro"
|
1749 |
|
1750 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1751 |
msgid "Right"
|
1752 |
+
msgstr "Direita"
|
1753 |
|
1754 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1755 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1756 |
msgid "Background color"
|
1757 |
+
msgstr "Cor de fundo"
|
1758 |
|
1759 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1760 |
msgid "Padding"
|
1764 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1765 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1766 |
msgid "Border color"
|
1767 |
+
msgstr "Cor da borda"
|
1768 |
|
1769 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1770 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1771 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1772 |
msgid "Border width"
|
1773 |
+
msgstr "Largura da borda"
|
1774 |
|
1775 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1776 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1777 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1778 |
msgid "Text color"
|
1779 |
+
msgstr "Cor do texto"
|
1780 |
|
1781 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1782 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1783 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1784 |
msgid "Text size"
|
1785 |
+
msgstr "Largura do texto"
|
1786 |
|
1787 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1788 |
msgid "Background image"
|
1789 |
+
msgstr "Imagem de fundo"
|
1790 |
|
1791 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1792 |
msgid "Label styles"
|
1798 |
|
1799 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1800 |
msgid "Text style"
|
1801 |
+
msgstr "Estilo do texto"
|
1802 |
|
1803 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1804 |
msgid "Choose text style.."
|
1806 |
|
1807 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1808 |
msgid "Normal"
|
1809 |
+
msgstr "Normal"
|
1810 |
|
1811 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1812 |
msgid "Bold"
|
1813 |
+
msgstr "Negrito"
|
1814 |
|
1815 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1816 |
msgid "Italic"
|
1817 |
+
msgstr "Itálico"
|
1818 |
|
1819 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1820 |
msgid "Bold & Italic"
|
1821 |
+
msgstr "Negrito & itálico"
|
1822 |
|
1823 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1824 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1841 |
|
1842 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1843 |
msgid "Field width"
|
1844 |
+
msgstr "Largura do campo"
|
1845 |
|
1846 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1847 |
msgid "Field height"
|
1848 |
+
msgstr "Altura do campo"
|
1849 |
|
1850 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1851 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1852 |
msgid "Border radius"
|
1853 |
+
msgstr "Border radius"
|
1854 |
|
1855 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1856 |
msgid "Focus outline"
|
1862 |
|
1863 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1864 |
msgid "Button width"
|
1865 |
+
msgstr "Largura do botão"
|
1866 |
|
1867 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1868 |
msgid "Button height"
|
1869 |
+
msgstr "Altura do botão"
|
1870 |
|
1871 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1872 |
msgid "Error and success messages"
|
1873 |
+
msgstr "Mensagens de sucesso e erro"
|
1874 |
|
1875 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1876 |
msgid "Success text color"
|
1882 |
|
1883 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1884 |
msgid "Advanced"
|
1885 |
+
msgstr "Avançado"
|
1886 |
|
1887 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1888 |
msgid "CSS Selector Prefix"
|
languages/mailchimp-for-wp-pt_PT.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-pt_PT.po
CHANGED
@@ -9,7 +9,7 @@ msgstr ""
|
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-05-26 14:42+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
-
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-05-26 14:42+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
+
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pt_PT/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-ru_RU.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-ru_RU.po
CHANGED
@@ -13,9 +13,9 @@ msgstr ""
|
|
13 |
"Project-Id-Version: MailChimp for WordPress\n"
|
14 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
15 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
16 |
-
"PO-Revision-Date: 2015-
|
17 |
-
"Last-Translator:
|
18 |
-
"Language-Team: Russian (Russia) (http://www.transifex.com/
|
19 |
"MIME-Version: 1.0\n"
|
20 |
"Content-Type: text/plain; charset=UTF-8\n"
|
21 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -54,12 +54,12 @@ msgstr "MailChimp"
|
|
54 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
|
55 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
56 |
msgid "Checkbox Settings"
|
57 |
-
msgstr "
|
58 |
|
59 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:186
|
60 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
61 |
msgid "Checkboxes"
|
62 |
-
msgstr "
|
63 |
|
64 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
65 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
@@ -78,7 +78,7 @@ msgstr "Формы"
|
|
78 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:196
|
79 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:197
|
80 |
msgid "Upgrade to Pro"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:283
|
84 |
msgid "This option is only available in MailChimp for WordPress Pro."
|
@@ -89,12 +89,12 @@ msgstr "Эта возможность доступна только в верс
|
|
89 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
90 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
91 |
msgid "(PRO ONLY)"
|
92 |
-
msgstr "
|
93 |
|
94 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
95 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
96 |
msgid "Button text"
|
97 |
-
msgstr "Текст
|
98 |
|
99 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
100 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
@@ -147,7 +147,7 @@ msgstr "Регистрационную форму"
|
|
147 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
149 |
msgid "MultiSite forms"
|
150 |
-
msgstr "
|
151 |
|
152 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
153 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
@@ -160,7 +160,7 @@ msgstr "регистрация BuddyPress"
|
|
160 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
161 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
162 |
msgid "%s checkout"
|
163 |
-
msgstr "%s
|
164 |
|
165 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
166 |
msgid ""
|
@@ -176,7 +176,7 @@ msgstr "Данные загружены с сервера MailChimp"
|
|
176 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:372
|
177 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
|
178 |
msgid "Failed to renew MailChimp cache - please try again later."
|
179 |
-
msgstr "Не удалось
|
180 |
|
181 |
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
182 |
msgid "MailChimp Sign-Up Form"
|
@@ -184,7 +184,7 @@ msgstr "Форма регистрации MailChimp"
|
|
184 |
|
185 |
#: mailchimp-for-wordpress/includes/class-widget.php:23
|
186 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
187 |
-
msgstr "Отображает форму регистрации
|
188 |
|
189 |
#: mailchimp-for-wordpress/includes/class-widget.php:67
|
190 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:71
|
@@ -200,19 +200,19 @@ msgstr "Название:"
|
|
200 |
msgid ""
|
201 |
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
202 |
" form settings</a>."
|
203 |
-
msgstr "Вы можете
|
204 |
|
205 |
#: mailchimp-for-wordpress/includes/functions/general.php:15
|
206 |
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
207 |
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
|
208 |
msgid "Email address"
|
209 |
-
msgstr "Email
|
210 |
|
211 |
#: mailchimp-for-wordpress/includes/functions/general.php:16
|
212 |
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
|
213 |
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
|
214 |
msgid "Your email address"
|
215 |
-
msgstr "Ваш email
|
216 |
|
217 |
#: mailchimp-for-wordpress/includes/functions/general.php:17
|
218 |
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
|
@@ -239,12 +239,12 @@ msgstr "Оп-па. Что-то пошло не так. Пожалуйста, п
|
|
239 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
240 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
|
241 |
msgid "Please provide a valid email address."
|
242 |
-
msgstr "Пожалуйста, введите правильный email
|
243 |
|
244 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
245 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
|
246 |
msgid "Given email address is already subscribed, thank you!"
|
247 |
-
msgstr "Указанный email
|
248 |
|
249 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
250 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
|
@@ -264,7 +264,7 @@ msgstr "Вы были отписаны от рассылки."
|
|
264 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
265 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
266 |
msgid "Given email address is not subscribed."
|
267 |
-
msgstr "Указанный email
|
268 |
|
269 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
270 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
@@ -373,7 +373,7 @@ msgstr "Эти данные были отправлены в MailChimp:"
|
|
373 |
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
374 |
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
375 |
msgid "Email address:"
|
376 |
-
msgstr "
|
377 |
|
378 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
379 |
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
@@ -382,7 +382,7 @@ msgstr "Объединить переменные:"
|
|
382 |
|
383 |
#. Plugin Name of the plugin/theme
|
384 |
msgid "MailChimp for WordPress"
|
385 |
-
msgstr "MailChimp
|
386 |
|
387 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
388 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:99
|
@@ -393,7 +393,7 @@ msgstr "Основные настройки"
|
|
393 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
394 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
395 |
msgid "API Settings"
|
396 |
-
msgstr "-
|
397 |
|
398 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
399 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
@@ -418,7 +418,7 @@ msgstr "Ваш ключ MailChimp API"
|
|
418 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
419 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
420 |
msgid "Get your API key here."
|
421 |
-
msgstr "Получите
|
422 |
|
423 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
424 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
@@ -431,7 +431,7 @@ msgid ""
|
|
431 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
432 |
"your MailChimp lists, please use the following button to renew your cached "
|
433 |
"data."
|
434 |
-
msgstr "Следующая таблица показывает ваши данные по спискам MailChimp. Если вы измените списки на сервере MailChimp,
|
435 |
|
436 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
437 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
@@ -454,14 +454,14 @@ msgstr "Чтобы изменить параметры, выберите хот
|
|
454 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
455 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
456 |
msgid "MailChimp settings for checkboxes"
|
457 |
-
msgstr "
|
458 |
|
459 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
460 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
461 |
msgid ""
|
462 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
463 |
" subscribe people to."
|
464 |
-
msgstr "Если хотите использовать флажки регистрации, выберите хотя бы один список
|
465 |
|
466 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
467 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
@@ -498,12 +498,12 @@ msgstr "Двойное подтверждение?"
|
|
498 |
msgid ""
|
499 |
"Select \"yes\" if you want people to confirm their email address before "
|
500 |
"being subscribed (recommended)"
|
501 |
-
msgstr "Выберите \"Да\" если хотите, чтобы подписчики подтверждали
|
502 |
|
503 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
504 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
|
505 |
msgid "Checkbox settings"
|
506 |
-
msgstr "Настройки флажков
|
507 |
|
508 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
509 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
|
@@ -518,13 +518,13 @@ msgstr "В выбранную форму(ы) будет автоматическ
|
|
518 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
519 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
520 |
msgid "Checkbox label text"
|
521 |
-
msgstr "
|
522 |
|
523 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
524 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
525 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
|
526 |
msgid "HTML tags like %s are allowed in the label text."
|
527 |
-
msgstr "В тексте
|
528 |
|
529 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
530 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
13 |
"Project-Id-Version: MailChimp for WordPress\n"
|
14 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
15 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
16 |
+
"PO-Revision-Date: 2015-08-06 19:25+0000\n"
|
17 |
+
"Last-Translator: dmitry <d1mas@msn.com>\n"
|
18 |
+
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
20 |
"Content-Type: text/plain; charset=UTF-8\n"
|
21 |
"Content-Transfer-Encoding: 8bit\n"
|
54 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
|
55 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
56 |
msgid "Checkbox Settings"
|
57 |
+
msgstr "Настройки флажков"
|
58 |
|
59 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:186
|
60 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
61 |
msgid "Checkboxes"
|
62 |
+
msgstr "Флажки"
|
63 |
|
64 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
65 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
78 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:196
|
79 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:197
|
80 |
msgid "Upgrade to Pro"
|
81 |
+
msgstr "Обновить до Pro версии"
|
82 |
|
83 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:283
|
84 |
msgid "This option is only available in MailChimp for WordPress Pro."
|
89 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
90 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
91 |
msgid "(PRO ONLY)"
|
92 |
+
msgstr "(только в Pro версии)"
|
93 |
|
94 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
95 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
96 |
msgid "Button text"
|
97 |
+
msgstr "Текст кнопки"
|
98 |
|
99 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
100 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
147 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
149 |
msgid "MultiSite forms"
|
150 |
+
msgstr "мультисайтовые формы"
|
151 |
|
152 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
153 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
160 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
161 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
162 |
msgid "%s checkout"
|
163 |
+
msgstr "%s оплата"
|
164 |
|
165 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
166 |
msgid ""
|
176 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:372
|
177 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
|
178 |
msgid "Failed to renew MailChimp cache - please try again later."
|
179 |
+
msgstr "Не удалось загрузить данные с сервера MailChimp, попробуйте ещё раз позднее."
|
180 |
|
181 |
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
182 |
msgid "MailChimp Sign-Up Form"
|
184 |
|
185 |
#: mailchimp-for-wordpress/includes/class-widget.php:23
|
186 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
187 |
+
msgstr "Отображает форму регистрации MailChimp для WordPress"
|
188 |
|
189 |
#: mailchimp-for-wordpress/includes/class-widget.php:67
|
190 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:71
|
200 |
msgid ""
|
201 |
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
202 |
" form settings</a>."
|
203 |
+
msgstr "Вы можете отредактировать вашу форму подписки в <a href=\"%s\">настройках MailChimp для WordPress</a>."
|
204 |
|
205 |
#: mailchimp-for-wordpress/includes/functions/general.php:15
|
206 |
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
207 |
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
|
208 |
msgid "Email address"
|
209 |
+
msgstr "Адрес Email"
|
210 |
|
211 |
#: mailchimp-for-wordpress/includes/functions/general.php:16
|
212 |
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
|
213 |
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
|
214 |
msgid "Your email address"
|
215 |
+
msgstr "Ваш адрес email"
|
216 |
|
217 |
#: mailchimp-for-wordpress/includes/functions/general.php:17
|
218 |
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
|
239 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
240 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
|
241 |
msgid "Please provide a valid email address."
|
242 |
+
msgstr "Пожалуйста, введите правильный адрес email."
|
243 |
|
244 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
245 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
|
246 |
msgid "Given email address is already subscribed, thank you!"
|
247 |
+
msgstr "Указанный адрес email уже включен в рассылку, спасибо!"
|
248 |
|
249 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
250 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
|
264 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
265 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
266 |
msgid "Given email address is not subscribed."
|
267 |
+
msgstr "Указанный адрес email не был включен в подписку."
|
268 |
|
269 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
270 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
373 |
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
374 |
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
375 |
msgid "Email address:"
|
376 |
+
msgstr "Адрес email:"
|
377 |
|
378 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
379 |
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
382 |
|
383 |
#. Plugin Name of the plugin/theme
|
384 |
msgid "MailChimp for WordPress"
|
385 |
+
msgstr "MailChimp для WordPress"
|
386 |
|
387 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
388 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:99
|
393 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
394 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
395 |
msgid "API Settings"
|
396 |
+
msgstr "- Настройки API"
|
397 |
|
398 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
399 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
418 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
419 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
420 |
msgid "Get your API key here."
|
421 |
+
msgstr "Получите ваш ключ API здесь"
|
422 |
|
423 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
424 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
431 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
432 |
"your MailChimp lists, please use the following button to renew your cached "
|
433 |
"data."
|
434 |
+
msgstr "Следующая таблица показывает ваши данные по спискам MailChimp. Если вы измените списки на сервере MailChimp, используйте следующую кнопку чтобы перечитать данные."
|
435 |
|
436 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
437 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
454 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
455 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
456 |
msgid "MailChimp settings for checkboxes"
|
457 |
+
msgstr "Настройки MailChimp для флажков"
|
458 |
|
459 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
460 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
461 |
msgid ""
|
462 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
463 |
" subscribe people to."
|
464 |
+
msgstr "Если хотите использовать флажки регистрации, выберите хотя бы один список рассылок MailChimp."
|
465 |
|
466 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
467 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
498 |
msgid ""
|
499 |
"Select \"yes\" if you want people to confirm their email address before "
|
500 |
"being subscribed (recommended)"
|
501 |
+
msgstr "Выберите \"Да\" если хотите, чтобы подписчики подтверждали свой адрес электронной почты (рекомендуется)"
|
502 |
|
503 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
504 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
|
505 |
msgid "Checkbox settings"
|
506 |
+
msgstr "Настройки флажков"
|
507 |
|
508 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
509 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
|
518 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
519 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
520 |
msgid "Checkbox label text"
|
521 |
+
msgstr "Текст флажка"
|
522 |
|
523 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
524 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
525 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
|
526 |
msgid "HTML tags like %s are allowed in the label text."
|
527 |
+
msgstr "В тексте допустимы HTML теги, подобные %s."
|
528 |
|
529 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
530 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
languages/mailchimp-for-wp-sk_SK.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-sk_SK.po
CHANGED
@@ -8,7 +8,7 @@ msgstr ""
|
|
8 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
9 |
"PO-Revision-Date: 2015-05-26 14:42+0000\n"
|
10 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
11 |
-
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
8 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
9 |
"PO-Revision-Date: 2015-05-26 14:42+0000\n"
|
10 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
11 |
+
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/sk_SK/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-sv_SE.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-sv_SE.po
CHANGED
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
15 |
"PO-Revision-Date: 2015-06-12 10:30+0000\n"
|
16 |
"Last-Translator: Elger Lindgren <elger@bilddigital.se>\n"
|
17 |
-
"Language-Team: Swedish (Sweden) (http://www.transifex.com/
|
18 |
"MIME-Version: 1.0\n"
|
19 |
"Content-Type: text/plain; charset=UTF-8\n"
|
20 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
15 |
"PO-Revision-Date: 2015-06-12 10:30+0000\n"
|
16 |
"Last-Translator: Elger Lindgren <elger@bilddigital.se>\n"
|
17 |
+
"Language-Team: Swedish (Sweden) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/sv_SE/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
19 |
"Content-Type: text/plain; charset=UTF-8\n"
|
20 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/mailchimp-for-wp-tr_TR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-tr_TR.po
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
# Copyright (C) 2015 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
|
|
4 |
# Ferhat, 2015
|
5 |
# Hüseyin Sekmenoğlu <hus_as@yahoo.com>, 2015
|
6 |
# Murat Aksoy <istanbuldaemlakk@gmail.com>, 2015
|
@@ -9,9 +10,9 @@ msgstr ""
|
|
9 |
"Project-Id-Version: MailChimp for WordPress\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
11 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
12 |
-
"PO-Revision-Date: 2015-
|
13 |
-
"Last-Translator:
|
14 |
-
"Language-Team: Turkish (Turkey) (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"
|
@@ -128,7 +129,7 @@ msgstr "Abone ol"
|
|
128 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
129 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
130 |
msgid "Unsubscribe"
|
131 |
-
msgstr ""
|
132 |
|
133 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
134 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
@@ -255,12 +256,12 @@ msgstr "Lütfen gerekli alanları doldurun."
|
|
255 |
#: mailchimp-for-wordpress/includes/functions/general.php:50
|
256 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
257 |
msgid "You were successfully unsubscribed."
|
258 |
-
msgstr ""
|
259 |
|
260 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
261 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
262 |
msgid "Given email address is not subscribed."
|
263 |
-
msgstr ""
|
264 |
|
265 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
266 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
@@ -649,7 +650,7 @@ msgstr "Bu formu bir yazının, sayfanın ya da metin aracının içerisinde gö
|
|
649 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
650 |
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
651 |
msgid "Your form is missing the following (required) form fields:"
|
652 |
-
msgstr ""
|
653 |
|
654 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:117
|
655 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
@@ -745,7 +746,7 @@ msgstr ""
|
|
745 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
746 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
747 |
msgid "Successfully subscribed"
|
748 |
-
msgstr ""
|
749 |
|
750 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
751 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
@@ -804,19 +805,19 @@ msgstr "Geçersiz CAPTCHA"
|
|
804 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
805 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
806 |
msgid "General error"
|
807 |
-
msgstr ""
|
808 |
|
809 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
810 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
811 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
|
812 |
msgid "The text that shows when a general error occured."
|
813 |
-
msgstr ""
|
814 |
|
815 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:236
|
816 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
|
817 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
|
818 |
msgid "Unsubscribed"
|
819 |
-
msgstr ""
|
820 |
|
821 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
822 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
|
@@ -830,7 +831,7 @@ msgstr ""
|
|
830 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
831 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
|
832 |
msgid "Not subscribed"
|
833 |
-
msgstr ""
|
834 |
|
835 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:246
|
836 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
|
@@ -876,7 +877,7 @@ msgstr ""
|
|
876 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
877 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
878 |
msgid "Variables"
|
879 |
-
msgstr ""
|
880 |
|
881 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
882 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
@@ -982,12 +983,12 @@ msgstr "Gönder Düğmesi"
|
|
982 |
|
983 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
984 |
msgid "Subscribe / unsubscribe choice"
|
985 |
-
msgstr ""
|
986 |
|
987 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
988 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
989 |
msgid "List choice"
|
990 |
-
msgstr ""
|
991 |
|
992 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
993 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
@@ -1055,7 +1056,7 @@ msgstr ""
|
|
1055 |
|
1056 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1057 |
msgid "Looking for help?"
|
1058 |
-
msgstr ""
|
1059 |
|
1060 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1061 |
msgid ""
|
@@ -1066,7 +1067,7 @@ msgstr ""
|
|
1066 |
|
1067 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1068 |
msgid "Do you enjoy this plugin?"
|
1069 |
-
msgstr ""
|
1070 |
|
1071 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
1072 |
msgid "Leave a %s plugin review on WordPress.org"
|
@@ -1105,7 +1106,7 @@ msgstr ""
|
|
1105 |
|
1106 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1107 |
msgid "Multiple forms"
|
1108 |
-
msgstr ""
|
1109 |
|
1110 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
|
1111 |
msgid "Each subscribing to one or multiple MailChimp lists."
|
@@ -1113,7 +1114,7 @@ msgstr ""
|
|
1113 |
|
1114 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1115 |
msgid "AJAX forms"
|
1116 |
-
msgstr ""
|
1117 |
|
1118 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1119 |
msgid "Forms do not require a full page reload."
|
@@ -1130,7 +1131,7 @@ msgstr ""
|
|
1130 |
|
1131 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
|
1132 |
msgid "Styles Builder"
|
1133 |
-
msgstr ""
|
1134 |
|
1135 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1136 |
msgid "Create beautiful form themes with ease."
|
@@ -1142,7 +1143,7 @@ msgstr "Şimdi yükseltin"
|
|
1142 |
|
1143 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1144 |
msgid "View Demo"
|
1145 |
-
msgstr ""
|
1146 |
|
1147 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
|
1148 |
msgid "Documentation"
|
@@ -1174,7 +1175,7 @@ msgstr "İsteğe Bağlı Ayalar"
|
|
1174 |
|
1175 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
|
1176 |
msgid "MailChimp & Plugin License Settings"
|
1177 |
-
msgstr ""
|
1178 |
|
1179 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
|
1180 |
msgid "MailChimp & License"
|
@@ -1190,7 +1191,7 @@ msgstr "Raporlar"
|
|
1190 |
msgid ""
|
1191 |
"Please make sure the plugin is connected to MailChimp. <a "
|
1192 |
"href=\"%s\">Provide a valid API key.</a>"
|
1193 |
-
msgstr ""
|
1194 |
|
1195 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
|
1196 |
msgid ""
|
@@ -1271,11 +1272,11 @@ msgstr ""
|
|
1271 |
|
1272 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1273 |
msgid "MailChimp for WP Form"
|
1274 |
-
msgstr ""
|
1275 |
|
1276 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:21
|
1277 |
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
1278 |
-
msgstr ""
|
1279 |
|
1280 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:43
|
1281 |
msgid ""
|
@@ -1313,15 +1314,15 @@ msgstr ""
|
|
1313 |
|
1314 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
|
1315 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1316 |
-
msgstr ""
|
1317 |
|
1318 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
|
1319 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
1320 |
-
msgstr ""
|
1321 |
|
1322 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
|
1323 |
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
1324 |
-
msgstr ""
|
1325 |
|
1326 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
|
1327 |
msgid ""
|
@@ -1343,7 +1344,7 @@ msgstr ""
|
|
1343 |
|
1344 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
|
1345 |
msgid "Failed to activate your license, your license key seems to be invalid."
|
1346 |
-
msgstr ""
|
1347 |
|
1348 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
|
1349 |
msgid "Your %s license has been deactivated."
|
@@ -1359,7 +1360,7 @@ msgstr ""
|
|
1359 |
|
1360 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1361 |
msgid "Failed to deactivate your %s license."
|
1362 |
-
msgstr ""
|
1363 |
|
1364 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
|
1365 |
msgid "Request error: \"%s\""
|
@@ -1629,7 +1630,7 @@ msgstr ""
|
|
1629 |
|
1630 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1631 |
msgid "Subscribe / unsubscribe action"
|
1632 |
-
msgstr ""
|
1633 |
|
1634 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1635 |
msgid "Form usage"
|
@@ -1663,15 +1664,15 @@ msgstr "Formlar & Ayarlar"
|
|
1663 |
|
1664 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
|
1665 |
msgid "CSS Styles Builder"
|
1666 |
-
msgstr ""
|
1667 |
|
1668 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
|
1669 |
msgid "License & API Settings"
|
1670 |
-
msgstr ""
|
1671 |
|
1672 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
|
1673 |
msgid "No lists were found in your MailChimp account."
|
1674 |
-
msgstr ""
|
1675 |
|
1676 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
|
1677 |
msgid ""
|
@@ -1709,11 +1710,11 @@ msgstr ""
|
|
1709 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
|
1710 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
|
1711 |
msgid "Create at least one form first."
|
1712 |
-
msgstr ""
|
1713 |
|
1714 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
|
1715 |
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1716 |
-
msgstr ""
|
1717 |
|
1718 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1719 |
msgid "Form container style"
|
@@ -1721,7 +1722,7 @@ msgstr ""
|
|
1721 |
|
1722 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1723 |
msgid "Form width"
|
1724 |
-
msgstr ""
|
1725 |
|
1726 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
@@ -1732,7 +1733,7 @@ msgstr ""
|
|
1732 |
|
1733 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1734 |
msgid "Text alignment"
|
1735 |
-
msgstr ""
|
1736 |
|
1737 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1738 |
msgid "Choose alignment"
|
@@ -1740,20 +1741,20 @@ msgstr ""
|
|
1740 |
|
1741 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1742 |
msgid "Left"
|
1743 |
-
msgstr ""
|
1744 |
|
1745 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1746 |
msgid "Center"
|
1747 |
-
msgstr ""
|
1748 |
|
1749 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1750 |
msgid "Right"
|
1751 |
-
msgstr ""
|
1752 |
|
1753 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1754 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1755 |
msgid "Background color"
|
1756 |
-
msgstr ""
|
1757 |
|
1758 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1759 |
msgid "Padding"
|
@@ -1763,61 +1764,61 @@ msgstr ""
|
|
1763 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1764 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1765 |
msgid "Border color"
|
1766 |
-
msgstr ""
|
1767 |
|
1768 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1769 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1770 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1771 |
msgid "Border width"
|
1772 |
-
msgstr ""
|
1773 |
|
1774 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1775 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1776 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1777 |
msgid "Text color"
|
1778 |
-
msgstr ""
|
1779 |
|
1780 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1781 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1782 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1783 |
msgid "Text size"
|
1784 |
-
msgstr ""
|
1785 |
|
1786 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1787 |
msgid "Background image"
|
1788 |
-
msgstr ""
|
1789 |
|
1790 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1791 |
msgid "Label styles"
|
1792 |
-
msgstr ""
|
1793 |
|
1794 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1795 |
msgid "Label width"
|
1796 |
-
msgstr ""
|
1797 |
|
1798 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1799 |
msgid "Text style"
|
1800 |
-
msgstr ""
|
1801 |
|
1802 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1803 |
msgid "Choose text style.."
|
1804 |
-
msgstr ""
|
1805 |
|
1806 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1807 |
msgid "Normal"
|
1808 |
-
msgstr ""
|
1809 |
|
1810 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1811 |
msgid "Bold"
|
1812 |
-
msgstr ""
|
1813 |
|
1814 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1815 |
msgid "Italic"
|
1816 |
-
msgstr ""
|
1817 |
|
1818 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1819 |
msgid "Bold & Italic"
|
1820 |
-
msgstr ""
|
1821 |
|
1822 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1823 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
@@ -1908,7 +1909,7 @@ msgstr ""
|
|
1908 |
|
1909 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1910 |
msgid "Copy Styles"
|
1911 |
-
msgstr ""
|
1912 |
|
1913 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1914 |
msgid ""
|
@@ -1926,7 +1927,7 @@ msgstr "Stillerden Sil"
|
|
1926 |
|
1927 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1928 |
msgid "Form preview"
|
1929 |
-
msgstr ""
|
1930 |
|
1931 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1932 |
msgid "Sign-Up Forms"
|
@@ -2082,7 +2083,7 @@ msgstr "Filtre"
|
|
2082 |
|
2083 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
|
2084 |
msgid "Show these lines:"
|
2085 |
-
msgstr ""
|
2086 |
|
2087 |
#. Plugin URI of the plugin/theme
|
2088 |
msgid "https://mc4wp.com/"
|
1 |
# Copyright (C) 2015 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
+
# Alper Çiftçi <alprciftci@gmail.com>, 2015
|
5 |
# Ferhat, 2015
|
6 |
# Hüseyin Sekmenoğlu <hus_as@yahoo.com>, 2015
|
7 |
# Murat Aksoy <istanbuldaemlakk@gmail.com>, 2015
|
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-05-26 14:41:46+00:00\n"
|
13 |
+
"PO-Revision-Date: 2015-08-18 05:38+0000\n"
|
14 |
+
"Last-Translator: Alper Çiftçi <alprciftci@gmail.com>\n"
|
15 |
+
"Language-Team: Turkish (Turkey) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/tr_TR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
129 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
130 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
131 |
msgid "Unsubscribe"
|
132 |
+
msgstr "Listeden Çık"
|
133 |
|
134 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
135 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
256 |
#: mailchimp-for-wordpress/includes/functions/general.php:50
|
257 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
258 |
msgid "You were successfully unsubscribed."
|
259 |
+
msgstr "Listeden başarıylla çıktınız"
|
260 |
|
261 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
262 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
263 |
msgid "Given email address is not subscribed."
|
264 |
+
msgstr "Verilen e-posta adresi listeye eklenmemiştir"
|
265 |
|
266 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
267 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
650 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
651 |
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
652 |
msgid "Your form is missing the following (required) form fields:"
|
653 |
+
msgstr "Formunuzun aşağıdaki alanları eksiktir."
|
654 |
|
655 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:117
|
656 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
746 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
747 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
748 |
msgid "Successfully subscribed"
|
749 |
+
msgstr "Başarıyla eklendi"
|
750 |
|
751 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
752 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
805 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
806 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
807 |
msgid "General error"
|
808 |
+
msgstr "Genel hata"
|
809 |
|
810 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
811 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
812 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
|
813 |
msgid "The text that shows when a general error occured."
|
814 |
+
msgstr "Genel bir hata oluştuğunda görüntülenen yazı"
|
815 |
|
816 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:236
|
817 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
|
818 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
|
819 |
msgid "Unsubscribed"
|
820 |
+
msgstr "Listeden Çıktınız"
|
821 |
|
822 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
823 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
|
831 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
832 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
|
833 |
msgid "Not subscribed"
|
834 |
+
msgstr "Kayıt olmamış"
|
835 |
|
836 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:246
|
837 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
|
877 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
878 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
879 |
msgid "Variables"
|
880 |
+
msgstr "Değişkenler"
|
881 |
|
882 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
883 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
983 |
|
984 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
985 |
msgid "Subscribe / unsubscribe choice"
|
986 |
+
msgstr "Abone ol / Abonelikten Çık seçimi"
|
987 |
|
988 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
989 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
990 |
msgid "List choice"
|
991 |
+
msgstr "Liste Seçimi"
|
992 |
|
993 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
994 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
1056 |
|
1057 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1058 |
msgid "Looking for help?"
|
1059 |
+
msgstr "Yardım mı arıyorsunuz?"
|
1060 |
|
1061 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1062 |
msgid ""
|
1067 |
|
1068 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1069 |
msgid "Do you enjoy this plugin?"
|
1070 |
+
msgstr "Bu eklenti hoşunuza gitti mi?"
|
1071 |
|
1072 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
1073 |
msgid "Leave a %s plugin review on WordPress.org"
|
1106 |
|
1107 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1108 |
msgid "Multiple forms"
|
1109 |
+
msgstr "Çoklu formlar"
|
1110 |
|
1111 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
|
1112 |
msgid "Each subscribing to one or multiple MailChimp lists."
|
1114 |
|
1115 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1116 |
msgid "AJAX forms"
|
1117 |
+
msgstr "AJAX formları"
|
1118 |
|
1119 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1120 |
msgid "Forms do not require a full page reload."
|
1131 |
|
1132 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
|
1133 |
msgid "Styles Builder"
|
1134 |
+
msgstr "Stil Yapıcı"
|
1135 |
|
1136 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1137 |
msgid "Create beautiful form themes with ease."
|
1143 |
|
1144 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1145 |
msgid "View Demo"
|
1146 |
+
msgstr "Demoyu Göster"
|
1147 |
|
1148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
|
1149 |
msgid "Documentation"
|
1175 |
|
1176 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
|
1177 |
msgid "MailChimp & Plugin License Settings"
|
1178 |
+
msgstr "Mailchimp & Eklenti Lisans Ayarları"
|
1179 |
|
1180 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
|
1181 |
msgid "MailChimp & License"
|
1191 |
msgid ""
|
1192 |
"Please make sure the plugin is connected to MailChimp. <a "
|
1193 |
"href=\"%s\">Provide a valid API key.</a>"
|
1194 |
+
msgstr "Lütfen eklentinin MailChimp' e bağlı olduğunu kontrol edin. <a href=\"%s\">Geçerli bir API anahtarı girin.</a>"
|
1195 |
|
1196 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
|
1197 |
msgid ""
|
1272 |
|
1273 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1274 |
msgid "MailChimp for WP Form"
|
1275 |
+
msgstr "WP Formu için MailChimp"
|
1276 |
|
1277 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:21
|
1278 |
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
1279 |
+
msgstr "WordPress için MailChimp kayıt formunuzdan birini görüntüler"
|
1280 |
|
1281 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:43
|
1282 |
msgid ""
|
1314 |
|
1315 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
|
1316 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1317 |
+
msgstr "%s lisansınız aktif edilmiştir. Sınırsız lisans sahibisiniz."
|
1318 |
|
1319 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
|
1320 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
1321 |
+
msgstr "%s lisansınız aktif edilmiştir. %d/%d aktivasyonunu kullandınız."
|
1322 |
|
1323 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
|
1324 |
msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
|
1325 |
+
msgstr "<a href=\"%s\">Lisansınızını yükseltebileceğinizi biliyor muydunuz?</a>"
|
1326 |
|
1327 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
|
1328 |
msgid ""
|
1344 |
|
1345 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
|
1346 |
msgid "Failed to activate your license, your license key seems to be invalid."
|
1347 |
+
msgstr "Lisansın aktifleştirilmesinde bir hata oluştu, lisans anahtarınız geçersiz görünüyor."
|
1348 |
|
1349 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
|
1350 |
msgid "Your %s license has been deactivated."
|
1360 |
|
1361 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1362 |
msgid "Failed to deactivate your %s license."
|
1363 |
+
msgstr "%s lisansınız deaktif edilirken bir hata oluştu."
|
1364 |
|
1365 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
|
1366 |
msgid "Request error: \"%s\""
|
1630 |
|
1631 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1632 |
msgid "Subscribe / unsubscribe action"
|
1633 |
+
msgstr "Abone ol / Abonelikten Çık eylemi"
|
1634 |
|
1635 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1636 |
msgid "Form usage"
|
1664 |
|
1665 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
|
1666 |
msgid "CSS Styles Builder"
|
1667 |
+
msgstr "CSS Stilleri Yapıcı"
|
1668 |
|
1669 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
|
1670 |
msgid "License & API Settings"
|
1671 |
+
msgstr "Lisans & API Ayarları"
|
1672 |
|
1673 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
|
1674 |
msgid "No lists were found in your MailChimp account."
|
1675 |
+
msgstr "MailChimp hesabınızda bir liste bulunamadı"
|
1676 |
|
1677 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
|
1678 |
msgid ""
|
1710 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
|
1711 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
|
1712 |
msgid "Create at least one form first."
|
1713 |
+
msgstr "İlk olarak bir liste oluşturun."
|
1714 |
|
1715 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
|
1716 |
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1717 |
+
msgstr "Formunuzu önizleyebilmek için JavaScript' i etkinleştirmeniz gerekmektedir."
|
1718 |
|
1719 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1720 |
msgid "Form container style"
|
1722 |
|
1723 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1724 |
msgid "Form width"
|
1725 |
+
msgstr "Form genişliği"
|
1726 |
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1728 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1733 |
|
1734 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1735 |
msgid "Text alignment"
|
1736 |
+
msgstr "Yazı hizalaması"
|
1737 |
|
1738 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1739 |
msgid "Choose alignment"
|
1741 |
|
1742 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1743 |
msgid "Left"
|
1744 |
+
msgstr "Sol"
|
1745 |
|
1746 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1747 |
msgid "Center"
|
1748 |
+
msgstr "Merkez"
|
1749 |
|
1750 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1751 |
msgid "Right"
|
1752 |
+
msgstr "Sağ"
|
1753 |
|
1754 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1755 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1756 |
msgid "Background color"
|
1757 |
+
msgstr "Arkaplan Rengi"
|
1758 |
|
1759 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1760 |
msgid "Padding"
|
1764 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1765 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1766 |
msgid "Border color"
|
1767 |
+
msgstr "Sınır rengi"
|
1768 |
|
1769 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1770 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1771 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1772 |
msgid "Border width"
|
1773 |
+
msgstr "Sınır genişliği"
|
1774 |
|
1775 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1776 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1777 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1778 |
msgid "Text color"
|
1779 |
+
msgstr "Yazı rengi"
|
1780 |
|
1781 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1782 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1783 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1784 |
msgid "Text size"
|
1785 |
+
msgstr "Yazı boyutu"
|
1786 |
|
1787 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1788 |
msgid "Background image"
|
1789 |
+
msgstr "Arkaplan resmi"
|
1790 |
|
1791 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1792 |
msgid "Label styles"
|
1793 |
+
msgstr "Etiket stilleri"
|
1794 |
|
1795 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1796 |
msgid "Label width"
|
1797 |
+
msgstr "Etiket genişliği"
|
1798 |
|
1799 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1800 |
msgid "Text style"
|
1801 |
+
msgstr "Yazı stili"
|
1802 |
|
1803 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1804 |
msgid "Choose text style.."
|
1805 |
+
msgstr "Yazı stili seçin.."
|
1806 |
|
1807 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1808 |
msgid "Normal"
|
1809 |
+
msgstr "Normal"
|
1810 |
|
1811 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1812 |
msgid "Bold"
|
1813 |
+
msgstr "Kalın"
|
1814 |
|
1815 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1816 |
msgid "Italic"
|
1817 |
+
msgstr "Eğik"
|
1818 |
|
1819 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1820 |
msgid "Bold & Italic"
|
1821 |
+
msgstr "Kalın & Eğik"
|
1822 |
|
1823 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1824 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1909 |
|
1910 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1911 |
msgid "Copy Styles"
|
1912 |
+
msgstr "Kopya Stilleri"
|
1913 |
|
1914 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1915 |
msgid ""
|
1927 |
|
1928 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1929 |
msgid "Form preview"
|
1930 |
+
msgstr "Form önizleme"
|
1931 |
|
1932 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1933 |
msgid "Sign-Up Forms"
|
2083 |
|
2084 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
|
2085 |
msgid "Show these lines:"
|
2086 |
+
msgstr "Bu satırları göster:"
|
2087 |
|
2088 |
#. Plugin URI of the plugin/theme
|
2089 |
msgid "https://mc4wp.com/"
|
languages/mailchimp-for-wp-vi_VN.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-vi_VN.po
CHANGED
@@ -9,7 +9,7 @@ msgstr ""
|
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-05-26 14:42+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
-
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
"PO-Revision-Date: 2015-05-26 14:42+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
+
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/vi_VN/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
mailchimp-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
-
Version: 2.3.
|
7 |
Author: ibericode
|
8 |
Author URI: http://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
@@ -47,7 +47,7 @@ function mc4wp_load_plugin() {
|
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
-
define( 'MC4WP_LITE_VERSION', '2.3.
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
@@ -56,15 +56,16 @@ function mc4wp_load_plugin() {
|
|
56 |
require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/general.php';
|
57 |
require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/template.php';
|
58 |
|
59 |
-
// Initialize
|
60 |
-
MC4WP_Lite::init();
|
61 |
-
$GLOBALS['mc4wp'] = MC4WP_Lite::instance();
|
62 |
-
|
63 |
if( is_admin()
|
64 |
&& ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
|
65 |
new MC4WP_Lite_Admin();
|
66 |
}
|
67 |
|
|
|
|
|
|
|
|
|
68 |
return true;
|
69 |
}
|
70 |
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
+
Version: 2.3.8
|
7 |
Author: ibericode
|
8 |
Author URI: http://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
+
define( 'MC4WP_LITE_VERSION', '2.3.8' );
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
56 |
require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/general.php';
|
57 |
require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/template.php';
|
58 |
|
59 |
+
// Initialize admin section of plugin
|
|
|
|
|
|
|
60 |
if( is_admin()
|
61 |
&& ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
|
62 |
new MC4WP_Lite_Admin();
|
63 |
}
|
64 |
|
65 |
+
// Initialize the plugin and store an instance in the global scope
|
66 |
+
MC4WP_Lite::init();
|
67 |
+
$GLOBALS['mc4wp'] = MC4WP_Lite::instance();
|
68 |
+
|
69 |
return true;
|
70 |
}
|
71 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== MailChimp for WordPress ===
|
2 |
Contributors: Ibericode, DvanKooten, iMazed, hchouhan
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
-
Tags: email, mailchimp, marketing, newsletter, signup, widget, mc4wp, contact form 7, woocommerce, buddypress
|
5 |
Requires at least: 3.7
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,37 +12,24 @@ MailChimp for WordPress, the absolute best. Add subscribers to your MailChimp li
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
16 |
|
17 |
-
|
|
|
|
|
18 |
|
19 |
= MailChimp for WordPress features =
|
20 |
|
21 |
- Connect with your MailChimp account in just 1 click.
|
22 |
-
- User friendly & mobile optimized sign-up forms
|
|
|
23 |
- 1-click MailChimp sign-up for your comment and registration form(s).
|
24 |
- Show sign-up forms in your posts or pages using the form shortcode, or in your sidebar or footer using the MailChimp widget.
|
25 |
- Redirect users to a "thank you" page after subscribing to your MailChimp list(s).
|
26 |
- All fields & messages are customizable so you can translate them into your preferred language.
|
27 |
-
- Built-in integration with Contact Form 7, WooCommerce and many
|
28 |
- Developer friendly. You have full control over the form HTML and there are many available action & filter hooks.
|
29 |
|
30 |
-
= Add-on plugins =
|
31 |
-
|
32 |
-
There are several [add-on plugins for MailChimp for WordPress](https://mc4wp.com/add-ons/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=description), which help you get even more out of your site.
|
33 |
-
|
34 |
-
= Contributing =
|
35 |
-
|
36 |
-
You can [contribute code to this plugin via GitHub](https://github.com/ibericode/mailchimp-for-wordpress) or [help to translate the plugin using Transifex](https://www.transifex.com/projects/p/mailchimp-for-wordpress/).
|
37 |
-
|
38 |
-
= Support =
|
39 |
-
|
40 |
-
Use the [WordPress.org plugin forums](https://wordpress.org/support/plugin/mailchimp-for-wp) for community support where we try to help all of our users. If you found a bug, please create an issue on Github where we can act upon them more efficiently.
|
41 |
-
|
42 |
-
If you're a premium user, please use the email address inside the plugin for support as that will guarantee a faster response time.
|
43 |
-
|
44 |
-
Please take a look at the [MailChimp for WordPress knowledge base](https://mc4wp.com/kb/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=description) as well.
|
45 |
-
|
46 |
> **MailChimp for WordPress Pro**<br /><br />
|
47 |
> This plugin has a premium version which comes with the following features.<br /><br />
|
48 |
> - As many forms as you want, each subscribing to one or multiple MailChimp lists.<br />
|
@@ -51,13 +38,13 @@ Please take a look at the [MailChimp for WordPress knowledge base](https://mc4wp
|
|
51 |
> - Custom Color Themes, a quick way to blend-in with your theme.<br />
|
52 |
> - Log & Statistics, providing you with useful insights like your new MailChimp subscribers came from.<br />
|
53 |
> - Priority support over email.<br /><br />
|
54 |
-
> [Upgrade to MailChimp for WordPress Pro](https://mc4wp.com/features/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=after-features-link)
|
55 |
|
56 |
-
=
|
57 |
|
58 |
-
MailChimp for WordPress
|
59 |
|
60 |
-
If you do not yet have a MailChimp account, [creating one is 100% free and only takes you about 30 seconds](
|
61 |
|
62 |
== Installation ==
|
63 |
|
@@ -149,27 +136,58 @@ Please head over to the [MailChimp for WordPress knowledge base](https://mc4wp.c
|
|
149 |
|
150 |
== Other Notes ==
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
= Translations =
|
153 |
|
154 |
The plugin is translated using Transifex. If you want to help out, please head over to the [translation project on Transifex](https://www.transifex.com/projects/p/mailchimp-for-wordpress/).
|
155 |
|
156 |
= Development =
|
157 |
|
158 |
-
|
159 |
|
160 |
== Screenshots ==
|
161 |
|
162 |
-
1.
|
163 |
-
2.
|
164 |
-
3.
|
165 |
-
4.
|
166 |
-
5.
|
167 |
-
6.
|
168 |
-
7. **Pro only:** Gain valuable insights which method your visitors used to subscribe for any given time period using beautiful line charts.
|
169 |
-
8. **Pro only:** Create your own CSS styles with the form designer in the Pro version.
|
170 |
|
171 |
== Changelog ==
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
= 2.3.7 - July 13, 2015 =
|
174 |
|
175 |
**Improvements**
|
@@ -633,160 +651,6 @@ Minor improvements and additions for compatibility with the [MailChimp Sync plug
|
|
633 |
- All settings pages are now fully translatable. The plugin has just 2 translations available yet (`en_US` and `nl_NL`) so if you're good at translating, please send me your language pack for the plugin.
|
634 |
- You can now use tab indentation in the form markup textarea
|
635 |
|
636 |
-
= 1.5.8 - March 26, 2014 =
|
637 |
-
|
638 |
-
**Fixes**
|
639 |
-
|
640 |
-
- 'call to undefined function' when using Avia Layout Builder
|
641 |
-
- "Already subscribed" message never showing
|
642 |
-
|
643 |
-
= 1.5.7 - March 18, 2014 =
|
644 |
-
**Fixes**
|
645 |
-
|
646 |
-
- Fixed special characters in group names not working
|
647 |
-
- Fixed BIRTHDAY field format (mm/dd)
|
648 |
-
|
649 |
-
**Improvements**
|
650 |
-
|
651 |
-
- Moved away from Singleton pattern
|
652 |
-
- Added a code version number for upgrade routines
|
653 |
-
- Better class documentation
|
654 |
-
- MailChimp cached data improvements. Now showing subscriber count.
|
655 |
-
- Base form CSS improvements, added vertical-align to field elements and removed padding from paragraph elements.
|
656 |
-
- Updated Placeholders.js for old IE versions
|
657 |
-
|
658 |
-
= 1.5.6 - March 13, 2014 =
|
659 |
-
* Fixed: Honeypot textarea showing in some themes
|
660 |
-
* Improved: Plugin will automatically strip duplicate `<form>` tags from form mark-up
|
661 |
-
* Improved: Better code documentation
|
662 |
-
* Improved: Code is now more adhering to WP code standards
|
663 |
-
* Improved: Add custom error type to error message filter to allow developers to show custom error messages
|
664 |
-
* Improved: Plugin will now show detailed errors for failed API requests (up to HTTP level)
|
665 |
-
* Improved: Better way of loading plugin files
|
666 |
-
|
667 |
-
= 1.5.5 - February 25, 2014 =
|
668 |
-
* Fixed: Field generator only generating text fields
|
669 |
-
* Fixed: Now using correct deactivation hook
|
670 |
-
* Improved: Plugin now fully compatible with custom folder names
|
671 |
-
|
672 |
-
= 1.5.4 - February 17, 2014 =
|
673 |
-
* Fixed: "Add to form" button not working
|
674 |
-
|
675 |
-
= 1.5.3 - February 16, 2014 =
|
676 |
-
* Fixed: Undefined constant notice on admin pages
|
677 |
-
* Fixed: "Add to form mark-up" button not working with CKEditor for WordPress
|
678 |
-
* Improved: Cleaned-up Admin JS
|
679 |
-
* Improved: You can now use `[mc4wp_checkbox]` inside your CF7 email templates
|
680 |
-
* Improved: You can now add `default:1` or `default:0` to the CF7 shortcode to check or uncheck the sign-up checkbox.
|
681 |
-
|
682 |
-
= 1.5.2 - February 4, 2014 =
|
683 |
-
* Improved: Improved direct file access security
|
684 |
-
* Improved: Now using native WP function to catch SSL requests
|
685 |
-
* Improved: Changed `call` method in API class to public.
|
686 |
-
* Added: Filter to edit the required capability to access settings pages
|
687 |
-
* Added: Filter to edit form action
|
688 |
-
* Added: Filters to allow extra form validation, like a captcha field.
|
689 |
-
* Added: Added `get_member_info` and `list_has_subscriber` method to API class.
|
690 |
-
|
691 |
-
= 1.5.1 - January 5, 2014 =
|
692 |
-
* Fixed: Having to submit form twice for some www-hosts.
|
693 |
-
* Improved: Scroll to form now waits until page has completely loaded
|
694 |
-
|
695 |
-
= 1.5 - December 18, 2013 =
|
696 |
-
* Added: BIRTHDAY fields will now be formatted in the DD/MM format automatically
|
697 |
-
* Added: The plugin will now try to automatically format ADDRESS fields.
|
698 |
-
* Added: Form fields will now keep their value when a validation error occurs
|
699 |
-
* Improved: Cache headers for CSS file
|
700 |
-
* Improved: Added notice when no lists selected and using sign-up checkboxes
|
701 |
-
* Improved: Various code improvements
|
702 |
-
* Fixed: Error when activating Pro with the Lite plugin still activated.
|
703 |
-
* Fixed: BuddyPress & MultiSite checkbox not automatically added
|
704 |
-
|
705 |
-
= 1.4.8 - December 10, 2013 =
|
706 |
-
* Fixed: "bug" that fetched lists again on every plugin settings page - huge performance improvements on the settings pages.
|
707 |
-
* Improved: Longer cache time for combined CSS file.
|
708 |
-
* Improved: Prevented indexing of plugin directories
|
709 |
-
* Improved: Improved default checkbox CSS for themes that have custom checkbox styling.
|
710 |
-
* Improved: Better scroll to form element after form submit. Vertically centers form element with and without jQuery now. No ugly page jump.
|
711 |
-
* Improved: WP 3.8 Admin CSS compatibility and other improvements to settings pages, especially for small(er) screens.
|
712 |
-
|
713 |
-
= 1.4.7 - December 4, 2013 =
|
714 |
-
* Fixed: Checkbox width not being reset when loading default CSS.
|
715 |
-
* Improved: Minor security improvement to prevent some plugin files from being accessed directly.
|
716 |
-
|
717 |
-
= 1.4.6 - November 27, 2013 =
|
718 |
-
* Fixed: Incorrect invalid email address notice showing up every time.
|
719 |
-
* Fixed: Incorrect form action url for some servers.
|
720 |
-
|
721 |
-
= 1.4.4 - November 26, 2013 =
|
722 |
-
* Fixed: FNAME and LNAME not being guessed from NAME for form sign-ups.
|
723 |
-
* Added: very small JavaScript fallback for placeholders in older browsers (<= IE9)
|
724 |
-
* Improved: removed limit from the lists retreived from MailChimp, for users with more than 25 lists.
|
725 |
-
* Improved: added current page URL to form action attribute for people using `<base>` url's.
|
726 |
-
* Improved: removed the sidebar from the admin pages on small screens
|
727 |
-
* Improved: various usability improvements
|
728 |
-
* Improved: minor improvements to default CSS styles
|
729 |
-
* Improved: added various action and filter hooks to the form sign-up process
|
730 |
-
|
731 |
-
= 1.4.3 - November 19, 2013 =
|
732 |
-
* Improved: added filter hook `mc4wp_lists` to customize lists before sending request to MailChimp.
|
733 |
-
* Improved: added empty `index.php` files to directories to prevent directory listings
|
734 |
-
|
735 |
-
= 1.4.2 - November 11, 2013 =
|
736 |
-
* Improved: Minor textual improvements in settings pages
|
737 |
-
* Improved: Security improvement, plugin file can't be access directly anymore
|
738 |
-
* Added: GPL license to plugin files
|
739 |
-
|
740 |
-
= 1.4.1 - October 29, 2013 =
|
741 |
-
* Fixed: Grouping data not being sent to MailChimp when using sign-up forms.
|
742 |
-
|
743 |
-
= 1.4 - October 28, 2013 =
|
744 |
-
* Added: default form CSS themes, choose between light, red, green, blue or dark form styling.
|
745 |
-
* Added: filter to add more variables to Checkbox Sign-Ups.
|
746 |
-
* Improved: more fields unlocked in "add field" tool when editing forms.
|
747 |
-
* Improved: smarter auto-detection of name fields when integrating with third-party forms like Contact Form 7
|
748 |
-
|
749 |
-
= 1.3.1 - October 20, 2013 =
|
750 |
-
* Fixed: bug when calling MailChimp API for PHP 5.2
|
751 |
-
* Improved: better default form CSS
|
752 |
-
* Improved: Combined checkbox and form stylesheets into 1 file and encouraged browser caching.
|
753 |
-
|
754 |
-
= 1.3 - October 13, 2013 =
|
755 |
-
* Added: Form widget
|
756 |
-
* Added: Smooth scroll to form element after form submission (if jQuery loaded)
|
757 |
-
* Improved: Added and removed some buttons from QTags editor toolbar
|
758 |
-
* Improved: Some UI improvements
|
759 |
-
* Improved: Optimized integration with third-party forms like Contact Form 7
|
760 |
-
|
761 |
-
= 1.2.5 - October 8, 2013 =
|
762 |
-
* Fixed `undefined function mc4wp_replace_variables` fatal error when using Quick Cache plugin.
|
763 |
-
|
764 |
-
= 1.2.4 - October 6, 2013 =
|
765 |
-
* Improved: code performance improvements
|
766 |
-
* Improved: added `mc4wp_get_form()` for an easier shortcode callback. Useful to [add a sign-up form to the end of your posts](http://dannyvankooten.com/add-mailchimp-sign-up-form-end-of-posts/).
|
767 |
-
* Improved default CSS
|
768 |
-
* Improved: checkbox debug message only shows to WP Administrators when JavaScript is disabled
|
769 |
-
* Added: form nonce for better security
|
770 |
-
* Fix: CSS issue where the form caused a huge sidebar gap in some themes.
|
771 |
-
|
772 |
-
= 1.2.3 - October 3, 2013 =
|
773 |
-
* Fixed: bug where some MailChimp fields were not showing in the field wizard / add field tool.
|
774 |
-
|
775 |
-
= 1.2.2 - September 30, 2013 =
|
776 |
-
* Fixed sending extra list fields when integrating with third-party forms like Contact Form 7
|
777 |
-
|
778 |
-
= 1.2.1 - September 29, 2013 =
|
779 |
-
* Improved: total revamp of the form field wizard, many improvements.
|
780 |
-
* Improved: some textual improvements in the setting pages
|
781 |
-
* Added: debug message to sign-up checkbox for WP administrators
|
782 |
-
|
783 |
-
= 1.2 - September 23, 2013 =
|
784 |
-
* Improved: updated to MailChimp 2.0 API
|
785 |
-
* Improved: now using custom light-weight API class using the WordPress HTTP API.
|
786 |
-
* Improved: huge performance improvements on admin settings pages
|
787 |
-
* Improved: usability and responsiveness of form settings page
|
788 |
-
* Improved: clean-up
|
789 |
-
|
790 |
== Upgrade Notice ==
|
791 |
|
792 |
= 2.3.6 =
|
1 |
=== MailChimp for WordPress ===
|
2 |
Contributors: Ibericode, DvanKooten, iMazed, hchouhan
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
+
Tags: email, mailchimp, marketing, newsletter, signup, widget, mc4wp, contact form 7, woocommerce, buddypress,ibericode
|
5 |
Requires at least: 3.7
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 2.3.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
= MailChimp for WordPress =
|
16 |
|
17 |
+
*Adding sign-up methods for your MailChimp lists to your WordPress site should be easy. With this MailChimp for WordPress, it finally is.*
|
18 |
+
|
19 |
+
This plugin helps you add subscribers to your MailChimp lists using various methods. You can create good looking opt-in forms or integrate with any other form on your site, like your comment form or WooCommerce checkout.
|
20 |
|
21 |
= MailChimp for WordPress features =
|
22 |
|
23 |
- Connect with your MailChimp account in just 1 click.
|
24 |
+
- User friendly & mobile optimized sign-up forms.
|
25 |
+
- Complete control over your form fields. Send anything you like to MailChimp.
|
26 |
- 1-click MailChimp sign-up for your comment and registration form(s).
|
27 |
- Show sign-up forms in your posts or pages using the form shortcode, or in your sidebar or footer using the MailChimp widget.
|
28 |
- Redirect users to a "thank you" page after subscribing to your MailChimp list(s).
|
29 |
- All fields & messages are customizable so you can translate them into your preferred language.
|
30 |
+
- Built-in integration with Contact Form 7, WooCommerce and many other plugins.
|
31 |
- Developer friendly. You have full control over the form HTML and there are many available action & filter hooks.
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
> **MailChimp for WordPress Pro**<br /><br />
|
34 |
> This plugin has a premium version which comes with the following features.<br /><br />
|
35 |
> - As many forms as you want, each subscribing to one or multiple MailChimp lists.<br />
|
38 |
> - Custom Color Themes, a quick way to blend-in with your theme.<br />
|
39 |
> - Log & Statistics, providing you with useful insights like your new MailChimp subscribers came from.<br />
|
40 |
> - Priority support over email.<br /><br />
|
41 |
+
> [Upgrade to MailChimp for WordPress Pro >>](https://mc4wp.com/features/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=after-features-link)
|
42 |
|
43 |
+
= Wait, but what is MailChimp? =
|
44 |
|
45 |
+
MailChimp for WordPress acts as a bridge between your WordPress site and your MailChimp account. MailChimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. MailChimp is absolutely free for lists up to 2000 subscribers, which is why it is the go-to choice for small businesses or starting entrepreneurs. That doesn't mean MailChimp is not a great choice for bigger businesses though.
|
46 |
|
47 |
+
If you do not yet have a MailChimp account, [creating one is 100% free and only takes you about 30 seconds](http://mailchimp.com/monkey-rewards/?utm_source=freemium_newsletter&utm_medium=email&utm_campaign=monkey_rewards&aid=a2d08947dcd3683512ce174c5&afl=1).
|
48 |
|
49 |
== Installation ==
|
50 |
|
136 |
|
137 |
== Other Notes ==
|
138 |
|
139 |
+
= Support =
|
140 |
+
|
141 |
+
Use the [WordPress.org plugin forums](https://wordpress.org/support/plugin/mailchimp-for-wp) for community support where we try to help all of our users. If you found a bug, please create an issue on Github where we can act upon them more efficiently.
|
142 |
+
|
143 |
+
If you're a premium user, please use the email address inside the plugin for support as that will guarantee a faster response time.
|
144 |
+
|
145 |
+
Please take a look at the [MailChimp for WordPress knowledge base](https://mc4wp.com/kb/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=description) as well.
|
146 |
+
|
147 |
+
= Add-on plugins =
|
148 |
+
|
149 |
+
There are several [add-on plugins for MailChimp for WordPress](https://mc4wp.com/add-ons/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=description), which help you get even more out of your site.
|
150 |
+
|
151 |
= Translations =
|
152 |
|
153 |
The plugin is translated using Transifex. If you want to help out, please head over to the [translation project on Transifex](https://www.transifex.com/projects/p/mailchimp-for-wordpress/).
|
154 |
|
155 |
= Development =
|
156 |
|
157 |
+
MailChimp for WordPress is being developed on GitHub. If you want to collaborate, please look at [ibericode/mailchimp-for-wordpress](https://github.com/ibericode/mailchimp-for-wordpress).
|
158 |
|
159 |
== Screenshots ==
|
160 |
|
161 |
+
1. A static sign-up form in the sidebar of the Twenty Fifteen theme.
|
162 |
+
2. Highly effective 1-click subscribe option in your comment, registration or other forms.
|
163 |
+
3. Use your own fields or use our Field Builder.
|
164 |
+
4. Integrations for many popular plugins.
|
165 |
+
5. Don't know CSS? No worries, our Styles Builder will do the heavy lifting for you! **(Pro Feature)**
|
166 |
+
6. Detailed statistics on which methods are generating the most subscribers. **(Pro Feature)**
|
|
|
|
|
167 |
|
168 |
== Changelog ==
|
169 |
|
170 |
+
= 2.3.8 - August 18, 2015 =
|
171 |
+
|
172 |
+
**Fixes**
|
173 |
+
|
174 |
+
- Prevented JS error when outputting forms with no submit button.
|
175 |
+
- Using `0` as a Redirect URL resulted in a blank page.
|
176 |
+
- Sign-up checkbox was showing twice in the Easy Digital Downloads checkout when showing registration fields, thanks [Daniel Espinoza](https://github.com/growdev).
|
177 |
+
- Default form was not automatically translated for languages other than English.
|
178 |
+
|
179 |
+
**Improvements**
|
180 |
+
|
181 |
+
- Better way to hide the honeypot field, which stops bots from subscribing to your lists.
|
182 |
+
- role="form" is no longer needed, thanks [XhmikosR](https://github.com/XhmikosR)!
|
183 |
+
- Filter `mc4wp_form_animate_scroll` now disables just the scroll animation, not the scroll itself.
|
184 |
+
- Revamped UI for MailChimp lists overview
|
185 |
+
- Updated German & Greek translations.
|
186 |
+
|
187 |
+
**Additions**
|
188 |
+
|
189 |
+
- Added `mc4wp_form_is_submitted()` and `mc4wp_form_get_response_html()` functions.
|
190 |
+
|
191 |
= 2.3.7 - July 13, 2015 =
|
192 |
|
193 |
**Improvements**
|
651 |
- All settings pages are now fully translatable. The plugin has just 2 translations available yet (`en_US` and `nl_NL`) so if you're good at translating, please send me your language pack for the plugin.
|
652 |
- You can now use tab indentation in the form markup textarea
|
653 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
== Upgrade Notice ==
|
655 |
|
656 |
= 2.3.6 =
|