MailChimp for WordPress - Version 2.2

Version Description

  • December 9, 2014 =

Fixes

  • "Select at least one list" notice appearing when unselecting any MailChimp list in Form settings
  • If an error occurs, textareas will no longer lose their value

Improvements

  • Improved the way form submissions are handled
  • Minor code & documentation improvements
  • Updated Dutch, French, Portugese and Spanish translations

Additions

  • Added sign-up checkbox integration for WooCommerce checkout.
  • Added sign-up checkbox integration for Easy Digital Downloads checkout.
  • The entered email will now be appended to the URL when redirecting to another page
Download this release

Release Info

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

Code changes from version 2.1.7 to 2.2

Files changed (45) hide show
  1. assets/css/admin.css +14 -14
  2. assets/css/admin.min.css +1 -1
  3. assets/js/admin.js +33 -25
  4. assets/js/admin.min.js +1 -1
  5. assets/js/form-request.js +4 -0
  6. assets/js/form-request.min.js +1 -1
  7. includes/class-admin.php +10 -7
  8. includes/class-checkbox-manager.php +26 -10
  9. includes/class-form-manager.php +14 -10
  10. includes/class-form-request.php +343 -235
  11. includes/class-mailchimp.php +13 -2
  12. includes/class-plugin.php +2 -0
  13. includes/functions/general.php +15 -9
  14. includes/functions/template.php +2 -2
  15. includes/integrations/class-edd.php +82 -0
  16. includes/integrations/class-integration.php +101 -21
  17. includes/integrations/class-woocommerce.php +91 -0
  18. includes/views/api-settings.php +1 -1
  19. includes/views/checkbox-settings.php +11 -2
  20. includes/views/form-settings.php +1 -1
  21. languages/mailchimp-for-wp-af_ZA.po +268 -170
  22. languages/mailchimp-for-wp-bg_BG.po +269 -171
  23. languages/mailchimp-for-wp-cs_CZ.po +277 -179
  24. languages/mailchimp-for-wp-da_DK.po +268 -170
  25. languages/mailchimp-for-wp-de_DE.po +276 -178
  26. languages/mailchimp-for-wp-el_GR.po +268 -170
  27. languages/mailchimp-for-wp-es_ES.po +321 -222
  28. languages/mailchimp-for-wp-fi_FI.po +268 -170
  29. languages/mailchimp-for-wp-fr_FR.po +351 -250
  30. languages/mailchimp-for-wp-gl_ES.po +268 -170
  31. languages/mailchimp-for-wp-he_IL.po +268 -170
  32. languages/mailchimp-for-wp-hu_HU.po +279 -181
  33. languages/mailchimp-for-wp-it_IT.po +278 -180
  34. languages/mailchimp-for-wp-ja_JP.po +268 -170
  35. languages/mailchimp-for-wp-lt_LT.po +268 -170
  36. languages/mailchimp-for-wp-ms_MY.po +268 -170
  37. languages/mailchimp-for-wp-nl_NL.po +278 -180
  38. languages/mailchimp-for-wp-no_NO.po +270 -172
  39. languages/mailchimp-for-wp-pl_PL.po +268 -170
  40. languages/mailchimp-for-wp-pt_BR.po +300 -201
  41. languages/mailchimp-for-wp-ro_RO.po +268 -170
  42. languages/mailchimp-for-wp-ru_RU.po +269 -171
  43. languages/mailchimp-for-wp-sk_SK.po +276 -178
  44. languages/mailchimp-for-wp-sl_SI.po +268 -170
  45. languages/mailchimp-for-wp-sr_RS.po +198 -109
assets/css/admin.css CHANGED
@@ -19,7 +19,7 @@
19
  vertical-align: top !important;
20
  }
21
 
22
- #mc4wp .mc4wp-box{
23
  margin-bottom:20px;
24
  }
25
 
@@ -67,7 +67,7 @@
67
  color:#aaa;
68
  }
69
 
70
- #mc4wp span.status{
71
  display:inline-block;
72
  padding:3px 6px;
73
  color:white;
@@ -75,28 +75,28 @@
75
  font-weight:bold;
76
  }
77
 
78
- #mc4wp span.positive{
79
  background-color:green;
80
  }
81
 
82
- #mc4wp span.negative{
83
  background-color:lightGrey;
84
  }
85
 
86
- #mc4wp table th{
87
  text-align:left;
88
  }
89
 
90
- #mc4wp table.form-table tr td:first-child,
91
- #mc4wp table.form-table tr th:first-child{
92
  padding-left:0;
93
  }
94
 
95
- #mc4wptd.nowrap{
96
  white-space: nowrap
97
  }
98
 
99
- #mc4wp td.desc{
100
  font-style:italic;
101
  font-size:11px;
102
  }
@@ -109,7 +109,7 @@
109
  margin: 1em 0 !important;
110
  }
111
 
112
- #mc4wp .mc4wp-col {
113
  float:left;
114
  -webkit-box-sizing: border-box;
115
  -moz-box-sizing:border-box;
@@ -118,11 +118,11 @@
118
  padding:0 5px;
119
  }
120
 
121
- #mc4wp .mc4wp-first{
122
  padding-left:0;
123
  }
124
 
125
- #mc4wp .mc4wp-last{
126
  padding-right:0;
127
  }
128
 
@@ -158,7 +158,7 @@ table.mc4wp-help tr:hover {
158
  background-color: #ddd;
159
  }
160
 
161
- #mc4wp .wp-list-table code {
162
  float:right;
163
  }
164
 
@@ -178,7 +178,7 @@ table.mc4wp-help tr:hover {
178
  margin-top:25px;
179
  padding-top: 25px;
180
  }
181
- #mc4wp .wp-list-table code {
182
  float: none;
183
  }
184
 
19
  vertical-align: top !important;
20
  }
21
 
22
+ #mc4wp-admin .mc4wp-box{
23
  margin-bottom:20px;
24
  }
25
 
67
  color:#aaa;
68
  }
69
 
70
+ #mc4wp-admin span.status{
71
  display:inline-block;
72
  padding:3px 6px;
73
  color:white;
75
  font-weight:bold;
76
  }
77
 
78
+ #mc4wp-admin span.positive{
79
  background-color:green;
80
  }
81
 
82
+ #mc4wp-admin span.negative{
83
  background-color:lightGrey;
84
  }
85
 
86
+ #mc4wp-admin table th{
87
  text-align:left;
88
  }
89
 
90
+ #mc4wp-admin table.form-table tr td:first-child,
91
+ #mc4wp-admin table.form-table tr th:first-child{
92
  padding-left:0;
93
  }
94
 
95
+ #mc4wp-admin td.nowrap{
96
  white-space: nowrap
97
  }
98
 
99
+ #mc4wp-admin td.desc{
100
  font-style:italic;
101
  font-size:11px;
102
  }
109
  margin: 1em 0 !important;
110
  }
111
 
112
+ #mc4wp-admin .mc4wp-col {
113
  float:left;
114
  -webkit-box-sizing: border-box;
115
  -moz-box-sizing:border-box;
118
  padding:0 5px;
119
  }
120
 
121
+ #mc4wp-admin .mc4wp-first{
122
  padding-left:0;
123
  }
124
 
125
+ #mc4wp-admin .mc4wp-last{
126
  padding-right:0;
127
  }
128
 
158
  background-color: #ddd;
159
  }
160
 
161
+ #mc4wp-admin .wp-list-table code {
162
  float:right;
163
  }
164
 
178
  margin-top:25px;
179
  padding-top: 25px;
180
  }
181
+ #mc4wp-admin .wp-list-table code {
182
  float: none;
183
  }
184
 
assets/css/admin.min.css CHANGED
@@ -1 +1 @@
1
- #mc4wp-content{float:left;width:65%}#mc4wp-sidebar{float:left;width:33%;margin-left:2%;border-left:1px solid #ccc;padding:0 0 0 2%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.valigntop{vertical-align:top!important}#mc4wp .mc4wp-box{margin-bottom:20px}#mc4wp-upgrade-box{background:#222;color:#ddd;padding:20px}#mc4wp-upgrade-box h3{margin:0;color:#fff}#mc4wp-fw h4{margin-top:0}#mc4wp-fw p{margin-bottom:1em}#mc4wp-fw-fields{display:none}#mc4wp-fw-preview{font-family:"Courier New",Courier,monospace;min-height:200px;font-size:11px;background:#fff;z-index:99}#mc4wp-lists{margin:0}#mc4wp-lists input{margin-right:5px}.mc4wp-settings tr.pro-feature td,.mc4wp-settings tr.pro-feature th,.pro-feature{color:#aaa}#mc4wp span.status{display:inline-block;padding:3px 6px;color:#fff;font-size:12px;font-weight:700}#mc4wp span.positive{background-color:green}#mc4wp span.negative{background-color:lightGrey}#mc4wp table th{text-align:left}#mc4wp table.form-table tr td:first-child,#mc4wp table.form-table tr th:first-child{padding-left:0}#mc4wptd.nowrap{white-space:nowrap}#mc4wp 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 .mc4wp-col{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:50%;padding:0 5px}#mc4wp .mc4wp-first{padding-left:0}#mc4wp .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 .wp-list-table code{float:right}@media(max-width:1279px){#mc4wp-content,#mc4wp-sidebar{float:none;width:100%;padding:0;margin:0}#mc4wp-sidebar{border-left:0;border-top:1px solid #ccc;margin-top:25px;padding-top:25px}#mc4wp .wp-list-table code{float:none}}@media(max-width:719px){.mc4wp-hide-smallscreens{display:none}}
1
+ #mc4wp-content{float:left;width:65%}#mc4wp-sidebar{float:left;width:33%;margin-left:2%;border-left:1px solid #ccc;padding:0 0 0 2%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.valigntop{vertical-align:top!important}#mc4wp-admin .mc4wp-box{margin-bottom:20px}#mc4wp-upgrade-box{background:#222;color:#ddd;padding:20px}#mc4wp-upgrade-box h3{margin:0;color:#fff}#mc4wp-fw h4{margin-top:0}#mc4wp-fw p{margin-bottom:1em}#mc4wp-fw-fields{display:none}#mc4wp-fw-preview{font-family:"Courier New",Courier,monospace;min-height:200px;font-size:11px;background:#fff;z-index:99}#mc4wp-lists{margin:0}#mc4wp-lists input{margin-right:5px}.mc4wp-settings tr.pro-feature td,.mc4wp-settings tr.pro-feature th,.pro-feature{color:#aaa}#mc4wp-admin span.status{display:inline-block;padding:3px 6px;color:#fff;font-size:12px;font-weight:700}#mc4wp-admin span.positive{background-color:green}#mc4wp-admin span.negative{background-color:lightGrey}#mc4wp-admin table th{text-align:left}#mc4wp-admin table.form-table tr td:first-child,#mc4wp-admin table.form-table tr th:first-child{padding-left:0}#mc4wp-admin td.nowrap{white-space:nowrap}#mc4wp-admin td.desc{font-style:italic;font-size:11px}.mc4wp-notice{padding:6px 8px;color:#31708f;background:#d9edf7;border:1px solid #bce8f1;margin:1em 0!important}#mc4wp-admin .mc4wp-col{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:50%;padding:0 5px}#mc4wp-admin .mc4wp-first{padding-left:0}#mc4wp-admin .mc4wp-last{padding-right:0}.mc4wp-well{background:#fff;padding:10px;border:1px solid #ccc}.mc4wp-title{font-size:1.4em;margin:1.6em 0 1em;padding:0 0 6px;border-bottom:1px solid #ddd}table.mc4wp-help,table.mc4wp-help td,table.mc4wp-help th{border:1px solid #ddd;border-collapse:collapse;font-size:12px}table.mc4wp-help td,table.mc4wp-help th{vertical-align:text-top;text-align:left;padding:5px 10px}table.mc4wp-help tr:hover{background-color:#ddd}#mc4wp-admin .wp-list-table code{float:right}@media(max-width:1279px){#mc4wp-content,#mc4wp-sidebar{float:none;width:100%;padding:0;margin:0}#mc4wp-sidebar{border-left:0;border-top:1px solid #ccc;margin-top:25px;padding-top:25px}#mc4wp-admin .wp-list-table code{float:none}}@media(max-width:719px){.mc4wp-hide-smallscreens{display:none}}
assets/js/admin.js CHANGED
@@ -1,27 +1,37 @@
1
- (function($) {
2
 
3
- $("tr.pro-feature, tr.pro-feature td :radio").change(function() {
4
- this.checked = false;
5
- alert("This option is only available in the premium version of MailChimp for WordPress.");
6
- event.stopPropagation();
7
- });
 
 
 
8
 
9
- $("tr.pro-feature, tr.pro-feature label").click(function() {
10
- alert("This option is only available in the premium version of MailChimp for WordPress.");
11
  event.stopPropagation();
12
- });
13
 
14
- (function() {
15
- $lists = $("#mc4wp-lists :input");
16
- $lists.change( toggleNotices );
17
 
18
- function toggleNotices() {
19
- var hasListSelected = $lists.filter(':checked').length > 0;
 
 
 
 
 
 
20
  $(".mc4wp-notice.no-lists-selected").toggle( ! hasListSelected );
21
- $('#mc4wp-fw-mailchimp-fields').toggle( hasListSelected );
22
  }
23
- })();
 
 
24
 
 
 
25
  $(document).delegate('#mc4wpformmarkup', 'keydown', function(e) {
26
  var keyCode = e.keyCode || e.which;
27
 
@@ -302,13 +312,13 @@
302
  'select': [ 'label', 'required', 'wrap-p', 'values'],
303
  'radio': [ 'label', 'required', 'wrap-p', 'values'],
304
  'date': [ 'label', 'required', 'wrap-p', 'value']
305
- }
306
 
307
  // map MailChimp field types to HTML5 field type
308
  var fieldTypesMap = {
309
  'text': 'text', 'email': 'email', 'phone': 'tel', 'address': 'text', 'number': 'number',
310
  'dropdown': 'select', 'date': 'date', 'birthday': 'date', 'radio': 'radio', 'checkbox': 'checkbox'
311
- }
312
 
313
  if(fieldTypesMap[data.field_type] != undefined) {
314
  fieldType = fieldTypesMap[data.field_type];
@@ -322,7 +332,7 @@
322
  var visibleRows = visibleRowsMap["default"];
323
  }
324
 
325
- for(var i = 0, count = visibleRows.length; i < count; i++) {
326
  $wizardFields.find('p.row.' + visibleRows[i]).show();
327
  }
328
 
@@ -339,7 +349,7 @@
339
  $required.attr('checked', data.req);
340
 
341
  if($multipleValues.is(":visible") && data.choices) {
342
- for(var i = 0, count = data.choices.length; i < count; i++) {
343
  $("<input />").attr('type', 'text').addClass('widefat').data('value', data.choices[i]).attr('placeholder', 'Label for "' + data.choices[i] + '" (or leave empty)').attr('value', data.choices[i]).appendTo($multipleValues);
344
  }
345
  }
@@ -364,7 +374,6 @@
364
  function updateCodePreview()
365
  {
366
  var $code = $("<div></div>");
367
- var inputs = [];
368
  var $input;
369
 
370
  switch(fieldType) {
@@ -386,8 +395,7 @@
386
  // add options to select
387
  $multipleValues.find(":input").each(function() {
388
  if($(this).val().length > 0) {
389
- $el = $("<option />").val($(this).data("value")).text($(this).val());
390
- $el.appendTo($input);
391
  }
392
  });
393
  break;
@@ -480,8 +488,8 @@
480
 
481
  // fallback, just append
482
  if(!result) {
483
- $formContent = $("#mc4wpformmarkup");
484
- $formContent.val($formContent.val() + "\n" + $codePreview.val());
485
  }
486
  }
487
 
1
+ (function($) {
2
 
3
+ var $context = $('#mc4wp-admin');
4
+
5
+ function proOnlyNotice() {
6
+
7
+ // prevent checking of radio buttons
8
+ if( typeof this.checked === 'boolean' ) {
9
+ this.checked = false;
10
+ }
11
 
12
+ alert( mc4wp.strings.pro_only );
 
13
  event.stopPropagation();
14
+ }
15
 
16
+ $context.find(".pro-feature, .pro-feature label, .pro-feature :radio").click(proOnlyNotice);
 
 
17
 
18
+ $context.find('input[name$="[show_at_woocommerce_checkout]"]').change(function() {
19
+ $context.find('tr#woocommerce-settings').toggle( $(this).prop( 'checked') );
20
+ });
21
+
22
+ var $listInputs = $("#mc4wp-lists").find(':input');
23
+ $listInputs.change(
24
+ function() {
25
+ var hasListSelected = $listInputs.filter(':checked').length > 0;
26
  $(".mc4wp-notice.no-lists-selected").toggle( ! hasListSelected );
27
+ $('#mc4wp-fw-fields, #mc4wp-fw-mailchimp-fields').toggle( hasListSelected );
28
  }
29
+ );
30
+
31
+
32
 
33
+
34
+ // Allow tabs inside the form mark-up
35
  $(document).delegate('#mc4wpformmarkup', 'keydown', function(e) {
36
  var keyCode = e.keyCode || e.which;
37
 
312
  'select': [ 'label', 'required', 'wrap-p', 'values'],
313
  'radio': [ 'label', 'required', 'wrap-p', 'values'],
314
  'date': [ 'label', 'required', 'wrap-p', 'value']
315
+ };
316
 
317
  // map MailChimp field types to HTML5 field type
318
  var fieldTypesMap = {
319
  'text': 'text', 'email': 'email', 'phone': 'tel', 'address': 'text', 'number': 'number',
320
  'dropdown': 'select', 'date': 'date', 'birthday': 'date', 'radio': 'radio', 'checkbox': 'checkbox'
321
+ };
322
 
323
  if(fieldTypesMap[data.field_type] != undefined) {
324
  fieldType = fieldTypesMap[data.field_type];
332
  var visibleRows = visibleRowsMap["default"];
333
  }
334
 
335
+ for(var i = 0; i < visibleRows.length; i++) {
336
  $wizardFields.find('p.row.' + visibleRows[i]).show();
337
  }
338
 
349
  $required.attr('checked', data.req);
350
 
351
  if($multipleValues.is(":visible") && data.choices) {
352
+ for(var i = 0; i < data.choices.length; i++) {
353
  $("<input />").attr('type', 'text').addClass('widefat').data('value', data.choices[i]).attr('placeholder', 'Label for "' + data.choices[i] + '" (or leave empty)').attr('value', data.choices[i]).appendTo($multipleValues);
354
  }
355
  }
374
  function updateCodePreview()
375
  {
376
  var $code = $("<div></div>");
 
377
  var $input;
378
 
379
  switch(fieldType) {
395
  // add options to select
396
  $multipleValues.find(":input").each(function() {
397
  if($(this).val().length > 0) {
398
+ $("<option />").val($(this).data("value")).text($(this).val()).appendTo($input);
 
399
  }
400
  });
401
  break;
488
 
489
  // fallback, just append
490
  if(!result) {
491
+ var $formContent = $("#mc4wpformmarkup");
492
+ $("#mc4wpformmarkup").val($formContent.val() + "\n" + $codePreview.val());
493
  }
494
  }
495
 
assets/js/admin.min.js CHANGED
@@ -1 +1 @@
1
- !function(a){a("tr.pro-feature, tr.pro-feature td :radio").change(function(){this.checked=!1,alert("This option is only available in the premium version of MailChimp for WordPress."),event.stopPropagation()}),a("tr.pro-feature, tr.pro-feature label").click(function(){alert("This option is only available in the premium version of MailChimp for WordPress."),event.stopPropagation()}),function(){function b(){var b=$lists.filter(":checked").length>0;a(".mc4wp-notice.no-lists-selected").toggle(!b),a("#mc4wp-fw-mailchimp-fields").toggle(b)}$lists=a("#mc4wp-lists :input"),$lists.change(b)}(),a(document).delegate("#mc4wpformmarkup","keydown",function(b){var c=b.keyCode||b.which;if(9==c){b.preventDefault();var d=this.selectionStart,e=this.selectionEnd;a(this).val(a(this).val().substring(0,d)+" "+a(this).val().substring(e)),this.selectionStart=this.selectionEnd=d+1}}),function(){"undefined"!=typeof QTags&&(QTags.addButton("mc4wp_paragraph","<p>","<p>","</p>","paragraph","Paragraph tag",1),QTags.addButton("mc4wp_label","label","<label>","</label>","label","Label tag",2),QTags.addButton("mc4wp_response","form response","{response}","","response","Shows the form response"),QTags.addButton("mc4wp_subscriber_count","# of subscribers","{subscriber_count}","","subscribers","Shows number of subscribers of selected list(s)"),1==window.mc4wp.has_captcha_plugin&&QTags.addButton("mc4wp_captcha","CAPTCHA","{captcha}","","captcha","Display a CAPTCHA field"))}(),function(){function b(){o.find("option").not(".default").remove(),n.filter(":checked").each(function(){for(var b=a(this).data("list-fields"),c=a(this).data("list-groupings"),d=0,e=b.length;e>d;d++){var f=b[d];if(0==p.find("option[value='"+f.tag+"']").length){var g=f.name.length>25?f.name.substring(0,25)+"..":f.name;f.req&&(g+="*");var h=a("<option />").text(g).val(f.tag).data("list-field",f);d>3&&h.text("(PRO ONLY) "+g).attr("disabled","disabled").data("field",null),p.append(h)}}for(var d=0,i=c.length;i>d;d++){var j=c[d];if(0==q.find("option[value='"+j.id+"']").length){var g=j.name.length>25?j.name.substring(0,25)+"..":j.name,h=a("<option />").text(g).val(j.id).data("list-grouping",j);d>=1&&h.text("(PRO ONLY) "+g).attr("disabled","disabled").data("list-grouping",null),q.append(h)}}})}function c(){d();var b=a(this).find(":selected");switch(b.val()){case"submit":l="submit",t.text("Button text"),r.find("p.row").filter(".value, .wrap-p").show();break;case"lists":l="lists",r.find(".wrap-p").show(),j();break;default:var c=b.data("list-field");if(c)return h(c);var c=b.data("list-grouping");if(c)return f(c)}j()}function d(){r.find(".row :input").each(function(){a(this).is(":checkbox")?this.checked=!0:this.value=""}),r.find("p.row").hide(),u.find(":input").remove(),r.show(),l="text",m="",t.html("Initial value <small>(optional)</small>")}function e(b){for(var c=0,d=b.length;d>c;c++)a("<input />").attr("type","text").addClass("widefat").data("value",b[c].name).attr("placeholder",'Label for "'+b[c].name+'" (or leave empty)').attr("value",b[c].name).appendTo(u)}function f(a){switch(r.find("p.row").filter(".values, .label, .wrap-p").show(),v.val(a.name+":"),m="GROUPINGS["+a.id+"]",e(a.groups),a.form_field){case"radio":l="radio";break;case"hidden":r.find("p.row").filter(".values, .label, .wrap-p").hide(),r.find("p.row.value").show();for(var b=0,c=a.groups.length;c>b;b++)s.val(s.val()+a.groups[b].name+",");l="hidden";break;case"dropdown":l="select";break;default:l="checkbox",m+="[]"}j()}function g(){var b="";return n.each(function(){var c=a(this).val(),d=a(this).parent("label").text(),e="";a(this).is(":checked")&&(e+="checked "),b+="<label>\n",b+=' <input type="checkbox" name="_mc4wp_lists[]" value="'+c+'" '+e+" /> "+d+"\n",b+="</label>\n"}),b}function h(b){var c={"default":["label","value","placeholder","required","wrap-p"],select:["label","required","wrap-p","values"],radio:["label","required","wrap-p","values"],date:["label","required","wrap-p","value"]},d={text:"text",email:"email",phone:"tel",address:"text",number:"number",dropdown:"select",date:"date",birthday:"date",radio:"radio",checkbox:"checkbox"};if(l=void 0!=d[b.field_type]?d[b.field_type]:"text",void 0!=c[l])var e=c[l];else var e=c["default"];for(var f=0,g=e.length;g>f;f++)r.find("p.row."+e[f]).show();if(l=l,m=b.tag,w.val("Your "+b.name.toLowerCase()),v.val(b.name+":"),x.attr("checked",b.req),u.is(":visible")&&b.choices)for(var f=0,g=b.choices.length;g>f;f++)a("<input />").attr("type","text").addClass("widefat").data("value",b.choices[f]).attr("placeholder",'Label for "'+b.choices[f]+'" (or leave empty)').attr("value",b.choices[f]).appendTo(u);j()}function i(a){a=html_beautify(a),z.val(a)}function j(){var b,c=a("<div></div>");switch(l){case"lists":var d=g();return y.is(":visible:checked")&&(d="<p>"+d+"</p>"),i(d);case"select":b=a("<select />"),u.find(":input").each(function(){a(this).val().length>0&&($el=a("<option />").val(a(this).data("value")).text(a(this).val()),$el.appendTo(b))});break;case"radio":case"checkbox":u.find(":input").each(function(){a(this).val().length>0&&(b=a("<input />").attr("type",l).attr("name",m).val(a(this).data("value")),x.is(":visible:checked")&&b.attr("required",!0),c.append(b),b.wrap("<label />"),a("<span />").text(a(this).val()+" ").insertAfter(b))});break;case"textarea":b=a("<textarea />");break;default:b=a("<input />").attr("type",l)}"radio"!=l&&"checkbox"!=l&&(m.length>0&&b.attr("name",m),s.is(":visible")&&s.val().length>0&&("textarea"==l?b.text(s.val()):b.attr("value",s.val())),w.is(":visible")&&w.val().length>0&&b.attr("placeholder",w.val()),x.is(":visible:checked")&&b.attr("required",!0),c.append(b)),v.is(":visible")&&v.val().length>0&&a("<label />").text(v.val()).prependTo(c),y.is(":visible:checked")&&c.wrapInner(a("<p />"));var d=c.html();i(d)}function k(){var b=!1;"undefined"!=typeof wpActiveEditor&&"undefined"!=typeof QTags&&QTags.insertContent&&(b=QTags.insertContent(z.val())),b||($formContent=a("#mc4wpformmarkup"),$formContent.val($formContent.val()+"\n"+z.val()))}var l,m,n=a("#mc4wp-lists :input"),o=a("#mc4wp-fw-mailchimp-fields"),p=a("#mc4wp-fw-mailchimp-fields .merge-fields"),q=a("#mc4wp-fw-mailchimp-fields .groupings"),r=a("#mc4wp-fw-fields"),s=a("#mc4wp-fw-value"),t=a("#mc4wp-fw-value-label"),u=a("#mc4wp-fw-values"),v=a("#mc4wp-fw-label"),w=a("#mc4wp-fw-placeholder"),x=a("#mc4wp-fw-required"),y=a("#mc4wp-fw-wrap-p"),z=a("#mc4wp-fw-preview");n.change(b),o.change(c),r.change(j),a("#mc4wp-fw-add-to-form").click(k),b()}()}(jQuery);
1
+ !function(a){function b(){"boolean"==typeof this.checked&&(this.checked=!1),alert(mc4wp.strings.pro_only),event.stopPropagation()}var c=a("#mc4wp-admin");c.find(".pro-feature, .pro-feature label, .pro-feature :radio").click(b),c.find('input[name$="[show_at_woocommerce_checkout]"]').change(function(){c.find("tr#woocommerce-settings").toggle(a(this).prop("checked"))});var d=a("#mc4wp-lists").find(":input");d.change(function(){var b=d.filter(":checked").length>0;a(".mc4wp-notice.no-lists-selected").toggle(!b),a("#mc4wp-fw-fields, #mc4wp-fw-mailchimp-fields").toggle(b)}),a(document).delegate("#mc4wpformmarkup","keydown",function(b){var c=b.keyCode||b.which;if(9==c){b.preventDefault();var d=this.selectionStart,e=this.selectionEnd;a(this).val(a(this).val().substring(0,d)+" "+a(this).val().substring(e)),this.selectionStart=this.selectionEnd=d+1}}),function(){"undefined"!=typeof QTags&&(QTags.addButton("mc4wp_paragraph","<p>","<p>","</p>","paragraph","Paragraph tag",1),QTags.addButton("mc4wp_label","label","<label>","</label>","label","Label tag",2),QTags.addButton("mc4wp_response","form response","{response}","","response","Shows the form response"),QTags.addButton("mc4wp_subscriber_count","# of subscribers","{subscriber_count}","","subscribers","Shows number of subscribers of selected list(s)"),1==window.mc4wp.has_captcha_plugin&&QTags.addButton("mc4wp_captcha","CAPTCHA","{captcha}","","captcha","Display a CAPTCHA field"))}(),function(){function b(){o.find("option").not(".default").remove(),n.filter(":checked").each(function(){for(var b=a(this).data("list-fields"),c=a(this).data("list-groupings"),d=0,e=b.length;e>d;d++){var f=b[d];if(0==p.find("option[value='"+f.tag+"']").length){var g=f.name.length>25?f.name.substring(0,25)+"..":f.name;f.req&&(g+="*");var h=a("<option />").text(g).val(f.tag).data("list-field",f);d>3&&h.text("(PRO ONLY) "+g).attr("disabled","disabled").data("field",null),p.append(h)}}for(var d=0,i=c.length;i>d;d++){var j=c[d];if(0==q.find("option[value='"+j.id+"']").length){var g=j.name.length>25?j.name.substring(0,25)+"..":j.name,h=a("<option />").text(g).val(j.id).data("list-grouping",j);d>=1&&h.text("(PRO ONLY) "+g).attr("disabled","disabled").data("list-grouping",null),q.append(h)}}})}function c(){d();var b=a(this).find(":selected");switch(b.val()){case"submit":l="submit",t.text("Button text"),r.find("p.row").filter(".value, .wrap-p").show();break;case"lists":l="lists",r.find(".wrap-p").show(),j();break;default:var c=b.data("list-field");if(c)return h(c);var c=b.data("list-grouping");if(c)return f(c)}j()}function d(){r.find(".row :input").each(function(){a(this).is(":checkbox")?this.checked=!0:this.value=""}),r.find("p.row").hide(),u.find(":input").remove(),r.show(),l="text",m="",t.html("Initial value <small>(optional)</small>")}function e(b){for(var c=0,d=b.length;d>c;c++)a("<input />").attr("type","text").addClass("widefat").data("value",b[c].name).attr("placeholder",'Label for "'+b[c].name+'" (or leave empty)').attr("value",b[c].name).appendTo(u)}function f(a){switch(r.find("p.row").filter(".values, .label, .wrap-p").show(),v.val(a.name+":"),m="GROUPINGS["+a.id+"]",e(a.groups),a.form_field){case"radio":l="radio";break;case"hidden":r.find("p.row").filter(".values, .label, .wrap-p").hide(),r.find("p.row.value").show();for(var b=0,c=a.groups.length;c>b;b++)s.val(s.val()+a.groups[b].name+",");l="hidden";break;case"dropdown":l="select";break;default:l="checkbox",m+="[]"}j()}function g(){var b="";return n.each(function(){var c=a(this).val(),d=a(this).parent("label").text(),e="";a(this).is(":checked")&&(e+="checked "),b+="<label>\n",b+=' <input type="checkbox" name="_mc4wp_lists[]" value="'+c+'" '+e+" /> "+d+"\n",b+="</label>\n"}),b}function h(b){var c={"default":["label","value","placeholder","required","wrap-p"],select:["label","required","wrap-p","values"],radio:["label","required","wrap-p","values"],date:["label","required","wrap-p","value"]},d={text:"text",email:"email",phone:"tel",address:"text",number:"number",dropdown:"select",date:"date",birthday:"date",radio:"radio",checkbox:"checkbox"};if(l=void 0!=d[b.field_type]?d[b.field_type]:"text",void 0!=c[l])var e=c[l];else var e=c["default"];for(var f=0;f<e.length;f++)r.find("p.row."+e[f]).show();if(l=l,m=b.tag,w.val("Your "+b.name.toLowerCase()),v.val(b.name+":"),x.attr("checked",b.req),u.is(":visible")&&b.choices)for(var f=0;f<b.choices.length;f++)a("<input />").attr("type","text").addClass("widefat").data("value",b.choices[f]).attr("placeholder",'Label for "'+b.choices[f]+'" (or leave empty)').attr("value",b.choices[f]).appendTo(u);j()}function i(a){a=html_beautify(a),z.val(a)}function j(){var b,c=a("<div></div>");switch(l){case"lists":var d=g();return y.is(":visible:checked")&&(d="<p>"+d+"</p>"),i(d);case"select":b=a("<select />"),u.find(":input").each(function(){a(this).val().length>0&&a("<option />").val(a(this).data("value")).text(a(this).val()).appendTo(b)});break;case"radio":case"checkbox":u.find(":input").each(function(){a(this).val().length>0&&(b=a("<input />").attr("type",l).attr("name",m).val(a(this).data("value")),x.is(":visible:checked")&&b.attr("required",!0),c.append(b),b.wrap("<label />"),a("<span />").text(a(this).val()+" ").insertAfter(b))});break;case"textarea":b=a("<textarea />");break;default:b=a("<input />").attr("type",l)}"radio"!=l&&"checkbox"!=l&&(m.length>0&&b.attr("name",m),s.is(":visible")&&s.val().length>0&&("textarea"==l?b.text(s.val()):b.attr("value",s.val())),w.is(":visible")&&w.val().length>0&&b.attr("placeholder",w.val()),x.is(":visible:checked")&&b.attr("required",!0),c.append(b)),v.is(":visible")&&v.val().length>0&&a("<label />").text(v.val()).prependTo(c),y.is(":visible:checked")&&c.wrapInner(a("<p />"));var d=c.html();i(d)}function k(){var b=!1;if("undefined"!=typeof wpActiveEditor&&"undefined"!=typeof QTags&&QTags.insertContent&&(b=QTags.insertContent(z.val())),!b){var c=a("#mc4wpformmarkup");a("#mc4wpformmarkup").val(c.val()+"\n"+z.val())}}var l,m,n=a("#mc4wp-lists :input"),o=a("#mc4wp-fw-mailchimp-fields"),p=a("#mc4wp-fw-mailchimp-fields .merge-fields"),q=a("#mc4wp-fw-mailchimp-fields .groupings"),r=a("#mc4wp-fw-fields"),s=a("#mc4wp-fw-value"),t=a("#mc4wp-fw-value-label"),u=a("#mc4wp-fw-values"),v=a("#mc4wp-fw-label"),w=a("#mc4wp-fw-placeholder"),x=a("#mc4wp-fw-required"),y=a("#mc4wp-fw-wrap-p"),z=a("#mc4wp-fw-preview");n.change(b),o.change(c),r.change(j),a("#mc4wp-fw-add-to-form").click(k),b()}()}(jQuery);
assets/js/form-request.js CHANGED
@@ -159,6 +159,10 @@ window.mc4wpFormRequest = (function() {
159
  case 'select-one':
160
  element.value = value.toString() || value;
161
  break;
 
 
 
 
162
  }
163
  }
164
 
159
  case 'select-one':
160
  element.value = value.toString() || value;
161
  break;
162
+
163
+ case 'textarea':
164
+ element.innerText = value;
165
+ break;
166
  }
167
  }
168
 
assets/js/form-request.min.js CHANGED
@@ -1 +1 @@
1
- window.mc4wpFormRequest=function(){function a(){c(window,"load",b)}function b(){if(e=document.getElementById("mc4wp-form-"+mc4wpFormRequestData.submittedFormId)){0==mc4wpFormRequestData.success&&d(e,mc4wpFormRequestData.postData);var a=0,b=e,c=window.innerHeight;if(b.offsetParent){do a+=b.offsetTop;while(b=b.offsetParent)}else a=e.offsetTop;a-=c-80>e.clientHeight?(c-e.clientHeight)/2:80,void 0!==window.jQuery?jQuery("html, body").animate({scrollTop:a},800):window.scrollTo(0,a)}}function c(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent("on"+b,c)}function d(a,b,c){for(var e in b){var f=e,g=b[e];if(""!=g){if("undefined"!=typeof c&&(f=c+"["+e+"]"),g.constructor==Array)f+="[]";else if("object"==typeof g){d(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":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}}}}}var e;return{init:function(){a()}}}(),mc4wpFormRequest.init();
1
+ window.mc4wpFormRequest=function(){function a(){c(window,"load",b)}function b(){if(e=document.getElementById("mc4wp-form-"+mc4wpFormRequestData.submittedFormId)){0==mc4wpFormRequestData.success&&d(e,mc4wpFormRequestData.postData);var a=0,b=e,c=window.innerHeight;if(b.offsetParent){do a+=b.offsetTop;while(b=b.offsetParent)}else a=e.offsetTop;a-=c-80>e.clientHeight?(c-e.clientHeight)/2:80,void 0!==window.jQuery?jQuery("html, body").animate({scrollTop:a},800):window.scrollTo(0,a)}}function c(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent("on"+b,c)}function d(a,b,c){for(var e in b){var f=e,g=b[e];if(""!=g){if("undefined"!=typeof c&&(f=c+"["+e+"]"),g.constructor==Array)f+="[]";else if("object"==typeof g){d(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":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 e;return{init:function(){a()}}}(),mc4wpFormRequest.init();
includes/class-admin.php CHANGED
@@ -294,7 +294,10 @@ class MC4WP_Lite_Admin
294
  wp_enqueue_script( array( 'jquery', 'mc4wp-beautifyhtml', 'mc4wp-admin' ) );
295
  wp_localize_script( 'mc4wp-admin', 'mc4wp',
296
  array(
297
- 'has_captcha_plugin' => $this->has_captcha_plugin
 
 
 
298
  )
299
  );
300
  }
@@ -323,13 +326,13 @@ class MC4WP_Lite_Admin
323
  $checkbox_plugins['bbpress_forms'] = "bbPress";
324
  }
325
 
326
- if ( class_exists( 'Easy_Digital_Downloads' ) ) {
327
- $checkbox_plugins['_edd_checkout'] = __( '(PRO ONLY)', 'mailchimp-for-wp' ) . ' ' . "Easy Digital Downloads checkout";
328
- }
329
 
330
- if ( class_exists( 'Woocommerce' ) ) {
331
- $checkbox_plugins['_woocommerce_checkout'] = __( '(PRO ONLY)', 'mailchimp-for-wp' ) . ' ' . "WooCommerce checkout";
332
- }
333
 
334
  return $checkbox_plugins;
335
  }
294
  wp_enqueue_script( array( 'jquery', 'mc4wp-beautifyhtml', 'mc4wp-admin' ) );
295
  wp_localize_script( 'mc4wp-admin', 'mc4wp',
296
  array(
297
+ 'has_captcha_plugin' => $this->has_captcha_plugin,
298
+ 'strings' => array(
299
+ 'pro_only' => __( 'This option is only available in MailChimp for WordPress Pro.', 'mailchimp-for-wp' )
300
+ )
301
  )
302
  );
303
  }
326
  $checkbox_plugins['bbpress_forms'] = "bbPress";
327
  }
328
 
329
+ if ( class_exists( 'WooCommerce' ) ) {
330
+ $checkbox_plugins['woocommerce_checkout'] = sprintf( __( '%s checkout', 'mailchimp-for-wp' ), 'WooCommerce' );
331
+ }
332
 
333
+ if ( class_exists( 'Easy_Digital_Downloads' ) ) {
334
+ $checkbox_plugins['edd_checkout'] = sprintf( __( '%s checkout', 'mailchimp-for-wp' ), 'Easy Digital Downloads' );
335
+ }
336
 
337
  return $checkbox_plugins;
338
  }
includes/class-checkbox-manager.php CHANGED
@@ -1,11 +1,14 @@
1
  <?php
2
 
3
- if( ! defined("MC4WP_LITE_VERSION") ) {
4
  header( 'Status: 403 Forbidden' );
5
  header( 'HTTP/1.1 403 Forbidden' );
6
  exit;
7
  }
8
 
 
 
 
9
  class MC4WP_Lite_Checkbox_Manager
10
  {
11
  /**
@@ -13,39 +16,44 @@ class MC4WP_Lite_Checkbox_Manager
13
  */
14
  public $integrations = array();
15
 
 
 
 
 
 
16
  /**
17
  * Constructor
18
  */
19
  public function __construct()
20
  {
21
- $opts = mc4wp_get_options( 'checkbox' );
22
 
23
  // load checkbox css if necessary
24
  add_action( 'wp_enqueue_scripts', array( $this, 'load_stylesheet' ) );
25
  add_action( 'login_enqueue_scripts', array( $this, 'load_stylesheet' ) );
26
 
27
  // Load WP Comment Form Integration
28
- if ( $opts['show_at_comment_form'] ) {
29
  $this->integrations['comment_form'] = new MC4WP_Comment_Form_Integration();
30
  }
31
 
32
  // Load WordPress Registration Form Integration
33
- if ( $opts['show_at_registration_form'] ) {
34
  $this->integrations['registration_form'] = new MC4WP_Registration_Form_Integration();
35
  }
36
 
37
  // Load BuddyPress Integration
38
- if ( $opts['show_at_buddypress_form'] ) {
39
  $this->integrations['buddypress_form'] = new MC4WP_BuddyPress_Integration();
40
  }
41
 
42
  // Load MultiSite Integration
43
- if ( $opts['show_at_multisite_form'] ) {
44
  $this->integrations['multisite_form'] = new MC4WP_MultiSite_Integration();
45
  }
46
 
47
  // Load bbPress Integration
48
- if ( $opts['show_at_bbpress_forms'] ) {
49
  $this->integrations['bbpress_forms'] = new MC4WP_bbPress_Integration();
50
  }
51
 
@@ -59,6 +67,16 @@ class MC4WP_Lite_Checkbox_Manager
59
  $this->integrations['events_manager'] = new MC4WP_Events_Manager_Integration();
60
  }
61
 
 
 
 
 
 
 
 
 
 
 
62
  // Always load General Integration
63
  $this->integrations['general'] = new MC4WP_General_Integration();
64
  }
@@ -68,9 +86,7 @@ class MC4WP_Lite_Checkbox_Manager
68
  */
69
  public function load_stylesheet( ) {
70
 
71
- $opts = mc4wp_get_options( 'checkbox' );
72
-
73
- if( $opts['css'] == false ) {
74
  return false;
75
  }
76
 
1
  <?php
2
 
3
+ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
4
  header( 'Status: 403 Forbidden' );
5
  header( 'HTTP/1.1 403 Forbidden' );
6
  exit;
7
  }
8
 
9
+ /**
10
+ * Takes care of all the sign-up checkboxes
11
+ */
12
  class MC4WP_Lite_Checkbox_Manager
13
  {
14
  /**
16
  */
17
  public $integrations = array();
18
 
19
+ /**
20
+ * @var array Array of checkbox options
21
+ */
22
+ private $options;
23
+
24
  /**
25
  * Constructor
26
  */
27
  public function __construct()
28
  {
29
+ $this->options = mc4wp_get_options( 'checkbox' );
30
 
31
  // load checkbox css if necessary
32
  add_action( 'wp_enqueue_scripts', array( $this, 'load_stylesheet' ) );
33
  add_action( 'login_enqueue_scripts', array( $this, 'load_stylesheet' ) );
34
 
35
  // Load WP Comment Form Integration
36
+ if ( $this->options['show_at_comment_form'] ) {
37
  $this->integrations['comment_form'] = new MC4WP_Comment_Form_Integration();
38
  }
39
 
40
  // Load WordPress Registration Form Integration
41
+ if ( $this->options['show_at_registration_form'] ) {
42
  $this->integrations['registration_form'] = new MC4WP_Registration_Form_Integration();
43
  }
44
 
45
  // Load BuddyPress Integration
46
+ if ( $this->options['show_at_buddypress_form'] ) {
47
  $this->integrations['buddypress_form'] = new MC4WP_BuddyPress_Integration();
48
  }
49
 
50
  // Load MultiSite Integration
51
+ if ( $this->options['show_at_multisite_form'] ) {
52
  $this->integrations['multisite_form'] = new MC4WP_MultiSite_Integration();
53
  }
54
 
55
  // Load bbPress Integration
56
+ if ( $this->options['show_at_bbpress_forms'] ) {
57
  $this->integrations['bbpress_forms'] = new MC4WP_bbPress_Integration();
58
  }
59
 
67
  $this->integrations['events_manager'] = new MC4WP_Events_Manager_Integration();
68
  }
69
 
70
+ // Load WooCommerce Integration
71
+ if ( $this->options['show_at_woocommerce_checkout'] ) {
72
+ $this->integrations['woocommerce'] = new MC4WP_WooCommerce_Integration();
73
+ }
74
+
75
+ // Load EDD Integration
76
+ if ( $this->options['show_at_edd_checkout'] ) {
77
+ $this->integrations['easy_digital_downloads'] = new MC4WP_EDD_Integration();
78
+ }
79
+
80
  // Always load General Integration
81
  $this->integrations['general'] = new MC4WP_General_Integration();
82
  }
86
  */
87
  public function load_stylesheet( ) {
88
 
89
+ if( $this->options['css'] == false ) {
 
 
90
  return false;
91
  }
92
 
includes/class-form-manager.php CHANGED
@@ -37,11 +37,6 @@ class MC4WP_Lite_Form_Manager {
37
  // load checkbox css if necessary
38
  add_action('wp_enqueue_scripts', array( $this, 'load_stylesheet' ) );
39
 
40
- // has a MC4WP form been submitted?
41
- if ( isset( $_POST['_mc4wp_form_submit'] ) ) {
42
- $this->form_request = new MC4WP_Lite_Form_Request;
43
- }
44
-
45
  /**
46
  * @deprecated
47
  */
@@ -57,11 +52,20 @@ class MC4WP_Lite_Form_Manager {
57
  {
58
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
59
 
60
- // register placeholder script, which will later be enqueued for IE only
61
- wp_register_script( 'mc4wp-placeholders', MC4WP_LITE_PLUGIN_URL . 'assets/js/placeholders.min.js', array(), MC4WP_LITE_VERSION, true );
 
 
 
 
 
 
 
 
 
 
 
62
 
63
- // register non-AJAX script (that handles form submissions)
64
- wp_register_script( 'mc4wp-form-request', MC4WP_LITE_PLUGIN_URL . 'assets/js/form-request' . $suffix . '.js', array(), MC4WP_LITE_VERSION, true );
65
  }
66
 
67
  /**
@@ -205,7 +209,7 @@ class MC4WP_Lite_Form_Manager {
205
  wp_localize_script( 'mc4wp-form-request', 'mc4wpFormRequestData', array(
206
  'success' => ( $this->form_request->is_successful() ) ? 1 : 0,
207
  'submittedFormId' => $this->form_request->get_form_instance_number(),
208
- 'postData' => stripslashes_deep( $_POST )
209
  )
210
  );
211
 
37
  // load checkbox css if necessary
38
  add_action('wp_enqueue_scripts', array( $this, 'load_stylesheet' ) );
39
 
 
 
 
 
 
40
  /**
41
  * @deprecated
42
  */
52
  {
53
  $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
54
 
55
+ // has a MC4WP form been submitted?
56
+ if ( isset( $_POST['_mc4wp_form_submit'] ) ) {
57
+ $this->form_request = new MC4WP_Lite_Form_Request;
58
+ }
59
+
60
+ // frontend only
61
+ if( ! is_admin() ) {
62
+ // register placeholder script, which will later be enqueued for IE only
63
+ wp_register_script( 'mc4wp-placeholders', MC4WP_LITE_PLUGIN_URL . 'assets/js/placeholders.min.js', array(), MC4WP_LITE_VERSION, true );
64
+
65
+ // register non-AJAX script (that handles form submissions)
66
+ wp_register_script( 'mc4wp-form-request', MC4WP_LITE_PLUGIN_URL . 'assets/js/form-request' . $suffix . '.js', array(), MC4WP_LITE_VERSION, true );
67
+ }
68
 
 
 
69
  }
70
 
71
  /**
209
  wp_localize_script( 'mc4wp-form-request', 'mc4wpFormRequestData', array(
210
  'success' => ( $this->form_request->is_successful() ) ? 1 : 0,
211
  'submittedFormId' => $this->form_request->get_form_instance_number(),
212
+ 'postData' => $this->form_request->get_data()
213
  )
214
  );
215
 
includes/class-form-request.php CHANGED
@@ -18,17 +18,17 @@ class MC4WP_Lite_Form_Request {
18
  /**
19
  * @var array
20
  */
21
- private $posted_data = array();
22
 
23
  /**
24
- * @var bool
25
  */
26
  private $success = false;
27
 
28
  /**
29
- * @var string
30
  */
31
- private $error_code = 'error';
32
 
33
  /**
34
  * @var array The form options
@@ -36,20 +36,24 @@ class MC4WP_Lite_Form_Request {
36
  private $form_options;
37
 
38
  /**
39
- * Constructor
40
- *
41
- * Hooks into the `init` action to start the process of subscribing the person who filled out the form
42
  */
43
- public function __construct() {
44
 
45
- // store number of submitted form
46
- $this->form_instance_number = absint( $_POST['_mc4wp_form_instance'] );
 
 
47
 
48
- // store form options
49
- $this->form_options = mc4wp_get_options( 'form' );
 
 
50
 
51
- add_action( 'init', array( $this, 'act' ) );
52
- }
 
 
53
 
54
  /**
55
  * @return bool
@@ -59,58 +63,104 @@ class MC4WP_Lite_Form_Request {
59
  }
60
 
61
  /**
62
- * @return string
63
  */
64
- public function get_error_code() {
65
- return $this->error_code;
66
  }
67
 
68
  /**
69
  * @return array
70
  */
71
- public function get_posted_data() {
72
- return $this->posted_data;
73
  }
74
 
75
  /**
76
- * @return int
77
  */
78
- public function get_form_instance_number() {
79
- return $this->form_instance_number;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  }
81
 
82
  /**
83
- * Acts on the submitted data
84
- * - Validates internal fields
85
- * - Formats email and merge_vars
86
- * - Sends off the subscribe request to MailChimp
87
- * - Returns state
88
  *
89
- * @return bool True on success, false on failure.
 
 
 
 
 
 
 
90
  */
91
- public function act() {
92
 
93
  // detect caching plugin
94
  $using_caching = ( defined( 'WP_CACHE' ) && WP_CACHE );
95
 
96
- // validate form nonce
97
- if ( ! $using_caching && ( ! isset( $_POST['_mc4wp_form_nonce'] ) || ! wp_verify_nonce( $_POST['_mc4wp_form_nonce'], '_mc4wp_form_nonce' ) ) ) {
98
  $this->error_code = 'invalid_nonce';
99
  return false;
100
  }
101
 
102
  // ensure honeypot was not filed
103
- if ( isset( $_POST['_mc4wp_required_but_not_really'] ) && ! empty( $_POST['_mc4wp_required_but_not_really'] ) ) {
104
  $this->error_code = 'spam';
105
  return false;
106
  }
107
 
108
  // check if captcha was present and valid
109
- if( isset( $_POST['_mc4wp_has_captcha'] ) && $_POST['_mc4wp_has_captcha'] == 1 && function_exists( 'cptch_check_custom_form' ) && cptch_check_custom_form() !== true ) {
110
  $this->error_code = 'invalid_captcha';
111
  return false;
112
  }
113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  /**
115
  * @filter mc4wp_valid_form_request
116
  *
@@ -118,226 +168,282 @@ class MC4WP_Lite_Form_Request {
118
  * Return true if the form is valid or an error string if it isn't.
119
  * Use the `mc4wp_form_messages` filter to register custom error messages.
120
  */
121
- $valid_form_request = apply_filters( 'mc4wp_valid_form_request', true );
122
  if( $valid_form_request !== true ) {
123
  $this->error_code = $valid_form_request;
124
  return false;
125
  }
126
 
127
- // get entered form data (sanitized)
128
- $this->sanitize_form_data();
129
- $data = $this->get_posted_data();
130
-
131
- // validate email
132
- if( ! isset( $data['EMAIL'] ) || ! is_string( $data['EMAIL'] ) || ! is_email( $data['EMAIL'] ) ) {
133
- $this->error_code = 'invalid_email';
134
- return false;
135
- }
136
-
137
- // setup merge_vars array
138
- $merge_vars = $data;
139
 
140
- // take email out of $data array, use the rest as merge_vars
141
- $email = $merge_vars['EMAIL'];
142
- unset( $merge_vars['EMAIL'] );
 
 
 
 
 
 
 
 
 
143
 
144
- // validate groupings
145
- if( isset( $data['GROUPINGS'] ) && is_array( $data['GROUPINGS'] ) ) {
146
- $merge_vars['GROUPINGS'] = $this->format_groupings_data( $data['GROUPINGS'] );
147
- }
148
 
149
- // subscribe the given email / data combination
150
- $this->success = $this->subscribe( $email, $merge_vars );
151
 
152
- // do stuff on success
153
- if( true === $this->success ) {
154
 
155
- // check if we want to redirect the visitor
156
- if ( ! empty( $this->form_options['redirect'] ) ) {
157
- wp_redirect( $this->form_options['redirect'] );
158
- exit;
159
  }
160
 
161
- // return true on success
162
- return true;
 
 
 
163
  }
164
 
165
- /**
166
- * @action mc4wp_form_error_{ERROR_CODE}
167
- *
168
- * Use to hook into various sign-up errors. Hook names are:
169
- *
170
- * - mc4wp_form_error_error General errors
171
- * - mc4wp_form_error_invalid_email Invalid email address
172
- * - mc4wp_form_error_already_subscribed Email is already on selected list(s)
173
- * - mc4wp_form_error_required_field_missing One or more required fields are missing
174
- * - mc4wp_form_error_no_lists_selected No MailChimp lists were selected
175
- *
176
- * @param int $form_id The ID of the submitted form
177
- * @param string $email The email of the subscriber
178
- * @param array $merge_vars Additional list fields, like FNAME etc (if any)
179
- */
180
- do_action( 'mc4wp_form_error_' . $this->get_error_code(), 0, $email, $merge_vars );
181
 
182
- // return false on failure
183
- return false;
184
  }
185
 
186
  /**
187
- * Format GROUPINGS data according to the MailChimp API requirements
188
  *
189
- * @param $data
190
  *
 
191
  * @return array
192
  */
193
- private function format_groupings_data( $data ) {
194
-
195
- $sanitized_data = array();
196
-
197
- foreach ( $data as $grouping_id_or_name => $groups ) {
198
 
199
- $grouping = array();
 
200
 
201
- // set key: grouping id or name
202
- if ( is_numeric( $grouping_id_or_name ) ) {
203
- $grouping['id'] = absint( $grouping_id_or_name );
 
204
  } else {
205
- $grouping['name'] = sanitize_text_field( $grouping_id_or_name );
206
  }
 
207
 
208
- // comma separated list should become an array
209
- if( ! is_array( $groups ) ) {
210
- $groups = sanitize_text_field( $groups );
211
- $groups = explode( ',', $groups );
212
- }
 
 
213
 
214
- $grouping['groups'] = $groups;
 
215
 
216
- // add grouping to array
217
- $sanitized_data[] = $grouping;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  }
219
 
220
- return $sanitized_data;
221
  }
222
 
223
  /**
224
- * Get and sanitize posted form data
225
- *
226
- * - Strips internal MailChimp for WP variables from the posted data array
227
- * - Strips ignored fields
228
- * - Converts keys to uppercase
229
- * - Trims scalar values and strips slashes
230
  *
231
  * @return array
232
  */
233
- private function sanitize_form_data() {
234
 
235
- $data = array();
236
 
237
- // Ignore those fields, we don't need them
238
- $ignored_fields = array( 'CPTCH_NUMBER', 'CNTCTFRM_CONTACT_ACTION', 'CPTCH_RESULT', 'CPTCH_TIME' );
 
239
 
240
- foreach( $_POST as $key => $value ) {
241
 
242
- // Sanitize key
243
- $key = trim( strtoupper( $key ) );
244
 
245
- // Skip field if it starts with _ or if it's in ignored_fields array
246
- if( $key[0] === '_' || in_array( $key, $ignored_fields ) ) {
 
 
247
  continue;
248
  }
249
 
250
- // Sanitize value if it's scalar
251
- $value = ( is_scalar( $value ) ) ? sanitize_text_field( $value ) : $value;
252
 
253
- // Add value to array
254
- $data[ $key ] = $value;
255
- }
256
 
257
- // strip slashes on everything
258
- $data = stripslashes_deep( $data );
 
 
259
 
260
- // store data somewhere safe
261
- $this->posted_data = $data;
262
- }
 
 
 
 
263
 
264
- /**
265
- * Subscribes the given email and additional list fields
266
- *
267
- * - Guesses FNAME and LNAME, if not set but NAME is.
268
- * - Adds OPTIN_IP field
269
- * - Validates merge_vars according to selected list(s) requirements
270
- * - Checks if a list was selected or given in form
271
- *
272
- * @param string $email
273
- * @param array $merge_vars
274
- *
275
- * @return bool
276
- */
277
- private function subscribe( $email, $merge_vars = array() ) {
278
 
279
- // Try to guess FNAME and LNAME if they are not given, but NAME is
280
- if( isset( $merge_vars['NAME'] ) && ! isset( $merge_vars['FNAME'] ) && ! isset( $merge_vars['LNAME'] ) ) {
281
 
282
- $strpos = strpos($merge_vars['NAME'], ' ');
283
- if( $strpos !== false ) {
284
- $merge_vars['FNAME'] = substr( $merge_vars['NAME'], 0, $strpos );
285
- $merge_vars['LNAME'] = substr( $merge_vars['NAME'], $strpos );
286
- } else {
287
- $merge_vars['FNAME'] = $merge_vars['NAME'];
288
  }
289
- }
290
 
291
- // set ip address
292
- if( ! isset( $merge_vars['OPTIN_IP'] ) && isset( $_SERVER['REMOTE_ADDR'] ) ) {
293
- $merge_vars['OPTIN_IP'] = $_SERVER['REMOTE_ADDR'];
294
- }
295
 
296
- // set correct mc_language field
297
- if( isset( $merge_vars['MC_LANGUAGE'] ) && strlen( $merge_vars['MC_LANGUAGE'] ) > 2 && ! in_array( $merge_vars['MC_LANGUAGE'] , array( 'fr_CA', 'es_ES', 'pt_PT' ) ) ) {
298
- $merge_vars['MC_LANGUAGE'] = strtolower( substr( $merge_vars['MC_LANGUAGE'], 0, 2 ) );
299
- }
300
 
301
- $api = mc4wp_get_api();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
 
303
- // get lists to subscribe to
304
- $lists = $this->get_lists();
305
 
306
- if ( empty( $lists ) ) {
307
- $this->error_code = 'no_lists_selected';
308
- return false;
309
  }
310
 
311
- // validate fields according to mailchimp list field types
312
- $merge_vars = $this->validate_merge_vars( $merge_vars );
313
- if( false === $merge_vars ) {
314
- return false;
 
 
 
315
  }
316
 
317
- do_action( 'mc4wp_before_subscribe', $email, $merge_vars, 0 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
 
319
  $result = false;
320
  $email_type = $this->get_email_type();
321
 
322
- foreach ( $lists as $list_id ) {
 
323
  // allow plugins to alter merge vars for each individual list
324
- $list_merge_vars = apply_filters( 'mc4wp_merge_vars', $merge_vars, 0, $list_id );
 
325
 
326
  // send a subscribe request to MailChimp for each list
327
- $result = $api->subscribe( $list_id, $email, $list_merge_vars, $email_type, $this->form_options['double_optin'] );
328
  }
329
 
330
- do_action( 'mc4wp_after_subscribe', $email, $merge_vars, 0, $result );
331
 
332
  if ( $result !== true ) {
333
  // subscribe request failed, store error.
334
  $this->success = false;
335
  $this->error_code = $result;
 
336
  return false;
337
  }
338
 
 
 
339
  // store user email in a cookie
340
- $this->set_email_cookie( $email );
 
 
 
 
 
 
 
341
 
342
  // Store success result
343
  $this->success = true;
@@ -346,74 +452,78 @@ class MC4WP_Lite_Form_Request {
346
  }
347
 
348
  /**
349
- * Validates the posted fields against merge_vars of selected list(s)
350
  *
351
- * @param array $data
 
352
  *
353
- * @return array|boolean Array of data on success, false on error
354
  */
355
- private function validate_merge_vars( array $data ) {
356
 
357
- $list_ids = $this->get_lists();
358
- $mailchimp = new MC4WP_MailChimp();
359
 
360
- foreach( $list_ids as $list_id ) {
361
 
362
- $list = $mailchimp->get_list( $list_id, false, true );
 
 
 
363
 
364
- // make sure list was found
365
- if( ! is_object( $list ) ) {
366
- continue;
367
- }
368
 
369
- // loop through list fields
370
- foreach( $list->merge_vars as $merge_var ) {
371
 
372
- // skip email field, it's validated elsewhere
373
- if( $merge_var->tag === 'EMAIL' ) {
374
- continue;
375
- }
376
-
377
- $posted_value = ( isset( $data[ $merge_var->tag ] ) && '' !== $data[ $merge_var->tag ] ) ? $data[ $merge_var->tag ] : '';
378
 
379
- // check if required field is given
380
- if( $merge_var->req && '' === $posted_value ) {
381
- $this->error_code = 'required_field_missing';
382
- return false;
383
- }
 
 
384
 
385
- // format birthday fields in MM/DD format, required by MailChimp
386
- if( $merge_var->field_type === 'birthday' && $posted_value !== '' ) {
387
- $data[ $merge_var->tag ] = date( 'm/d', strtotime( $data[ $merge_var->tag ] ) );
388
  }
389
 
390
- // format address fields
391
- if( $merge_var->field_type === 'address' && $posted_value !== '' ) {
392
 
393
- if( ! isset( $posted_value['addr1'] ) ) {
 
 
 
 
 
 
 
 
394
 
395
- // addr1, addr2, city, state, zip, country
396
- $address_pieces = explode( ',', $posted_value );
397
 
398
- // try to fill it.... this is a long shot
399
- $data[ $merge_var->tag ] = array(
400
- 'addr1' => $address_pieces[0],
401
- 'city' => ( isset( $address_pieces[1] ) ) ? $address_pieces[1] : '',
402
- 'state' => ( isset( $address_pieces[2] ) ) ? $address_pieces[2] : '',
403
- 'zip' => ( isset( $address_pieces[3] ) ) ? $address_pieces[3] : ''
404
- );
405
 
406
- } else {
407
- // form contains the necessary fields already: perfection
408
- $data[ $merge_var->tag ] = $posted_value;
409
- }
410
- }
 
 
411
 
 
 
 
412
 
413
- }
 
 
414
  }
415
 
416
- return $data;
 
417
  }
418
 
419
  /**
@@ -433,7 +543,7 @@ class MC4WP_Lite_Form_Request {
433
  // allow plugins to override this email type
434
  $email_type = apply_filters( 'mc4wp_email_type', $email_type );
435
 
436
- return $email_type;
437
  }
438
 
439
  /**
@@ -461,7 +571,7 @@ class MC4WP_Lite_Form_Request {
461
  // allow plugins to alter the lists to subscribe to
462
  $lists = apply_filters( 'mc4wp_lists', $lists );
463
 
464
- return $lists;
465
  }
466
 
467
  /**
@@ -474,6 +584,7 @@ class MC4WP_Lite_Form_Request {
474
  /**
475
  * @filter `mc4wp_cookie_expiration_time`
476
  * @expects timestamp
 
477
  *
478
  * Timestamp indicating when the email cookie expires, defaults to 30 days
479
  */
@@ -487,13 +598,13 @@ class MC4WP_Lite_Form_Request {
487
  *
488
  * @return string
489
  */
490
- public function get_response_html() {
491
 
492
  // get all form messages
493
  $messages = $this->get_form_messages();
494
 
495
  // retrieve correct message
496
- $type = ( $this->is_successful() ) ? 'success' : $this->get_error_code();
497
  $message = ( isset( $messages[ $type ] ) ) ? $messages[ $type ] : $messages['error'];
498
 
499
  /**
@@ -503,18 +614,15 @@ class MC4WP_Lite_Form_Request {
503
  *
504
  * Used to alter the error message, don't use. Use `mc4wp_form_messages` instead.
505
  */
506
- $message['text'] = apply_filters('mc4wp_form_error_message', $message['text'], $this->get_error_code() );
507
 
508
  $html = '<div class="mc4wp-alert mc4wp-'. $message['type'].'">' . $message['text'] . '</div>';
509
 
510
  // show additional MailChimp API errors to administrators
511
- if( false === $this->is_successful() && current_user_can( 'manage_options' ) ) {
512
-
513
- // show MailChimp error message (if any) to administrators
514
- $api = mc4wp_get_api();
515
 
516
- if( $api->has_error() ) {
517
- $html .= '<div class="mc4wp-alert mc4wp-error"><strong>' . __( 'MailChimp Error:', 'mailchimp-for-wp' ) . '</strong><br />'. $api->get_error_message() . '</div>';
518
  }
519
  }
520
 
@@ -533,7 +641,6 @@ class MC4WP_Lite_Form_Request {
533
  * ...
534
  * );
535
  *
536
- * @param int $form_id
537
  * @return array
538
  */
539
  public function get_form_messages() {
@@ -571,12 +678,13 @@ class MC4WP_Lite_Form_Request {
571
 
572
  /**
573
  * @filter mc4wp_form_messages
 
574
  *
575
  * Allows registering custom form messages, useful if you're using custom validation using the `mc4wp_valid_form_request` filter.
576
  */
577
- $messages = apply_filters( 'mc4wp_form_messages', $messages );
578
 
579
- return $messages;
580
  }
581
 
582
 
18
  /**
19
  * @var array
20
  */
21
+ private $data = array();
22
 
23
  /**
24
+ * @var bool Guilty until proven otherwise.
25
  */
26
  private $success = false;
27
 
28
  /**
29
+ * @var bool Guilty until proven otherwise.
30
  */
31
+ private $is_valid = false;
32
 
33
  /**
34
  * @var array The form options
36
  private $form_options;
37
 
38
  /**
39
+ * @var array
 
 
40
  */
41
+ private $lists_fields_map = array();
42
 
43
+ /**
44
+ * @var array
45
+ */
46
+ private $unmapped_fields = array();
47
 
48
+ /**
49
+ * @var string
50
+ */
51
+ private $error_code = 'error';
52
 
53
+ /**
54
+ * @var string
55
+ */
56
+ private $mailchimp_error = '';
57
 
58
  /**
59
  * @return bool
63
  }
64
 
65
  /**
66
+ * @return int
67
  */
68
+ public function get_form_instance_number() {
69
+ return $this->form_instance_number;
70
  }
71
 
72
  /**
73
  * @return array
74
  */
75
+ public function get_data() {
76
+ return $this->data;
77
  }
78
 
79
  /**
80
+ * Constructor
81
  */
82
+ public function __construct() {
83
+
84
+ // uppercase all POST keys
85
+ $this->data = array_change_key_case( $_POST, CASE_UPPER );
86
+
87
+ // store number of submitted form
88
+ $this->form_instance_number = absint( $this->data['_MC4WP_FORM_INSTANCE'] );
89
+ $this->form_options = mc4wp_get_options( 'form' );
90
+
91
+ $this->is_valid = $this->validate();
92
+
93
+ // normalize posted data
94
+ $this->data = $this->sanitize();
95
+
96
+ if( $this->is_valid ) {
97
+
98
+ // add some data to the posted data, like FNAME and LNAME
99
+ $this->guess_missing_fields( $this->data );
100
+
101
+ // map fields to corresponding MailChimp lists
102
+ if( $this->map_data() ) {
103
+
104
+ // subscribe using the processed data
105
+ $this->success = $this->subscribe( $this->lists_fields_map );
106
+ }
107
+ }
108
+
109
+ // send HTTP response
110
+ $this->send_http_response();
111
+
112
+ return $this->success;
113
  }
114
 
115
  /**
116
+ * Validates the request
 
 
 
 
117
  *
118
+ * - Nonce validity
119
+ * - Honeypot
120
+ * - Captcha
121
+ * - Email address
122
+ * - Lists (POST and options)
123
+ * - Additional validation using a filter.
124
+ *
125
+ * @return bool
126
  */
127
+ private function validate() {
128
 
129
  // detect caching plugin
130
  $using_caching = ( defined( 'WP_CACHE' ) && WP_CACHE );
131
 
132
+ // validate form nonce, but only if not using caching
133
+ if ( ! $using_caching && ( ! isset( $this->data['_MC4WP_FORM_NONCE'] ) || ! wp_verify_nonce( $this->data['_MC4WP_FORM_NONCE'], '_mc4wp_form_nonce' ) ) ) {
134
  $this->error_code = 'invalid_nonce';
135
  return false;
136
  }
137
 
138
  // ensure honeypot was not filed
139
+ if ( isset( $this->data['_MC4WP_REQUIRED_BUT_NOT_REALLY'] ) && ! empty( $this->data['_MC4WP_REQUIRED_BUT_NOT_REALLY'] ) ) {
140
  $this->error_code = 'spam';
141
  return false;
142
  }
143
 
144
  // check if captcha was present and valid
145
+ if( isset( $this->data['_MC4WP_HAS_CAPTCHA'] ) && $this->data['_MC4WP_HAS_CAPTCHA'] == 1 && function_exists( 'cptch_check_custom_form' ) && cptch_check_custom_form() !== true ) {
146
  $this->error_code = 'invalid_captcha';
147
  return false;
148
  }
149
 
150
+ // validate email
151
+ if( ! isset( $this->data['EMAIL'] ) || ! is_string( $this->data['EMAIL'] ) || ! is_email( $this->data['EMAIL'] ) ) {
152
+ $this->error_code = 'invalid_email';
153
+ return false;
154
+ }
155
+
156
+ // get lists to subscribe to
157
+ $lists = $this->get_lists();
158
+
159
+ if ( empty( $lists ) ) {
160
+ $this->error_code = 'no_lists_selected';
161
+ return false;
162
+ }
163
+
164
  /**
165
  * @filter mc4wp_valid_form_request
166
  *
168
  * Return true if the form is valid or an error string if it isn't.
169
  * Use the `mc4wp_form_messages` filter to register custom error messages.
170
  */
171
+ $valid_form_request = apply_filters( 'mc4wp_valid_form_request', true, $this->data );
172
  if( $valid_form_request !== true ) {
173
  $this->error_code = $valid_form_request;
174
  return false;
175
  }
176
 
177
+ return true;
178
+ }
 
 
 
 
 
 
 
 
 
 
179
 
180
+ /**
181
+ * Sanitize the request data.
182
+ *
183
+ * - Strips internal variables
184
+ * - Strip ignored fields
185
+ * - Sanitize scalar values
186
+ * - Strip slashes on everything
187
+ *
188
+ * @return array
189
+ */
190
+ private function sanitize() {
191
+ $data = array();
192
 
193
+ // Ignore those fields, we don't need them
194
+ $ignored_fields = array( 'CPTCH_NUMBER', 'CNTCTFRM_CONTACT_ACTION', 'CPTCH_RESULT', 'CPTCH_TIME' );
 
 
195
 
196
+ foreach( $this->data as $key => $value ) {
 
197
 
198
+ // Sanitize key
199
+ $key = trim( $key );
200
 
201
+ // Skip field if it starts with _ or if it's in ignored_fields array
202
+ if( $key[0] === '_' || in_array( $key, $ignored_fields ) ) {
203
+ continue;
 
204
  }
205
 
206
+ // Sanitize value
207
+ $value = ( is_scalar( $value ) ) ? sanitize_text_field( $value ) : $value;
208
+
209
+ // Add value to array
210
+ $data[ $key ] = $value;
211
  }
212
 
213
+ // strip slashes on everything
214
+ $data = stripslashes_deep( $data );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
 
216
+ // store data somewhere safe
217
+ return $data;
218
  }
219
 
220
  /**
221
+ * Guesses the value of some fields.
222
  *
223
+ * - FNAME and LNAME, if NAME is given
224
  *
225
+ * @param array $data
226
  * @return array
227
  */
228
+ public function guess_missing_fields( $data ) {
 
 
 
 
229
 
230
+ // fill FNAME and LNAME if they're not set, but NAME is.
231
+ if( isset( $data['NAME'] ) && ! isset( $data['FNAME'] ) && ! isset( $data['LNAME'] ) ) {
232
 
233
+ $strpos = strpos( $data['NAME'], ' ' );
234
+ if( $strpos !== false ) {
235
+ $data['FNAME'] = substr( $data['NAME'], 0, $strpos );
236
+ $data['LNAME'] = substr( $data['NAME'], $strpos );
237
  } else {
238
+ $data['FNAME'] = $data['NAME'];
239
  }
240
+ }
241
 
242
+ return $data;
243
+ }
244
+
245
+ /**
246
+ * Send HTTP response
247
+ */
248
+ public function send_http_response() {
249
 
250
+ // do stuff on success, non-AJAX only
251
+ if( $this->success ) {
252
 
253
+ // check if we want to redirect the visitor
254
+ if ( ! empty( $this->form_options['redirect'] ) ) {
255
+
256
+ $redirect_url = add_query_arg( array( 'mc4wp_email' => urlencode( $this->data['EMAIL'] ) ), $this->form_options['redirect'] );
257
+ wp_redirect( $redirect_url );
258
+ exit;
259
+ }
260
+
261
+ } else {
262
+
263
+ /**
264
+ * @action mc4wp_form_error_{ERROR_CODE}
265
+ *
266
+ * Use to hook into various sign-up errors. Hook names are:
267
+ *
268
+ * - mc4wp_form_error_error General errors
269
+ * - mc4wp_form_error_invalid_email Invalid email address
270
+ * - mc4wp_form_error_already_subscribed Email is already on selected list(s)
271
+ * - mc4wp_form_error_required_field_missing One or more required fields are missing
272
+ * - mc4wp_form_error_no_lists_selected No MailChimp lists were selected
273
+ *
274
+ * @param int $form_id The ID of the submitted form (PRO ONLY)
275
+ * @param string $email The email of the subscriber
276
+ * @param array $data Additional list fields, like FNAME etc (if any)
277
+ */
278
+ do_action( 'mc4wp_form_error_' . $this->error_code, 0, $this->data['EMAIL'], $this->data );
279
  }
280
 
 
281
  }
282
 
283
  /**
284
+ * Maps the received data to MailChimp lists
 
 
 
 
 
285
  *
286
  * @return array
287
  */
288
+ private function map_data() {
289
 
290
+ $data = $this->data;
291
 
292
+ $map = array();
293
+ $mapped_fields = array( 'EMAIL' );
294
+ $unmapped_fields = array();
295
 
296
+ $mailchimp = new MC4WP_MailChimp();
297
 
298
+ // loop through selected lists
299
+ foreach( $this->get_lists() as $list_id ) {
300
 
301
+ $list = $mailchimp->get_list( $list_id, false, true );
302
+
303
+ // skip this list if it's unexisting
304
+ if( ! is_object( $list ) || ! isset( $list->merge_vars ) ) {
305
  continue;
306
  }
307
 
308
+ // start with empty list map
309
+ $list_map = array();
310
 
311
+ // loop through other list fields
312
+ foreach( $list->merge_vars as $field ) {
 
313
 
314
+ // skip EMAIL field
315
+ if( $field->tag === 'EMAIL' ) {
316
+ continue;
317
+ }
318
 
319
+ // check if field is required
320
+ if( $field->req ) {
321
+ if( ! isset( $data[ $field->tag ] ) || '' === $data[ $field->tag ] ) {
322
+ $this->error_code = 'required_field_missing';
323
+ return false;
324
+ }
325
+ }
326
 
327
+ // if field is not set, continue.
328
+ if( ! isset( $data[ $field->tag ] ) ) {
329
+ continue;
330
+ }
 
 
 
 
 
 
 
 
 
 
331
 
332
+ // grab field value from data
333
+ $field_value = $data[ $field->tag ];
334
 
335
+ $field_value = $this->format_field_value( $field_value, $field->field_type );
336
+
337
+ // add field value to map
338
+ $mapped_fields[] = $field->tag;
339
+ $list_map[ $field->tag ] = $field_value;
 
340
  }
 
341
 
342
+ // loop through list groupings if GROUPINGS data was sent
343
+ if( isset( $data['GROUPINGS'] ) && is_array( $data['GROUPINGS'] ) && ! empty( $list->interest_groupings ) ) {
 
 
344
 
345
+ $list_map['GROUPINGS'] = array();
 
 
 
346
 
347
+ foreach( $list->interest_groupings as $grouping ) {
348
+
349
+ // check if data for this group was sent
350
+ if( isset( $data['GROUPINGS'][$grouping->id] ) ) {
351
+ $group_data = $data['GROUPINGS'][$grouping->id];
352
+ } elseif( isset( $data['GROUPINGS'][$grouping->name] ) ) {
353
+ $group_data = $data['GROUPINGS'][$grouping->name];
354
+ } else {
355
+ // no data for this grouping was sent, just continue.
356
+ continue;
357
+ }
358
+
359
+ // format new grouping
360
+ $grouping = array(
361
+ 'id' => $grouping->id,
362
+ 'groups' => $group_data
363
+ );
364
+
365
+ // make sure groups is an array
366
+ if( ! is_array( $grouping['groups'] ) ) {
367
+ $grouping['groups'] = sanitize_text_field( $grouping['groups'] );
368
+ $grouping['groups'] = explode( ',', $grouping['groups'] );
369
+ }
370
+
371
+ $list_map['GROUPINGS'][] = $grouping;
372
+
373
+ }
374
+
375
+ // unset GROUPINGS if no grouping data was found for this list
376
+ if( 0 === count( $list_map['GROUPINGS'] ) ) {
377
+ unset( $list_map['GROUPINGS'] );
378
+ }
379
+ }
380
+
381
+ // add to total map
382
+ $map[ $list_id ] = $list_map;
383
 
 
 
384
 
 
 
 
385
  }
386
 
387
+ // loop through data to find unmapped fields
388
+ if( count( $mapped_fields ) < count( $data ) ) {
389
+ foreach( $data as $field_key => $field_value ) {
390
+ if( ! in_array( $field_key, $mapped_fields ) ) {
391
+ $unmapped_fields[ $field_key ] = $field_value;
392
+ }
393
+ }
394
  }
395
 
396
+ $this->unmapped_fields = $unmapped_fields;
397
+ $this->lists_fields_map = $map;
398
+ return true;
399
+ }
400
+
401
+ /**
402
+ * Subscribes the given email and additional list fields
403
+ *
404
+ * @param array $lists_data
405
+ * @return bool
406
+ */
407
+ private function subscribe( $lists_data ) {
408
+
409
+ $api = mc4wp_get_api();
410
+
411
+ do_action( 'mc4wp_before_subscribe', $this->data['EMAIL'], $this->data, 0 );
412
 
413
  $result = false;
414
  $email_type = $this->get_email_type();
415
 
416
+ foreach ( $lists_data as $list_id => $list_field_data ) {
417
+
418
  // allow plugins to alter merge vars for each individual list
419
+ $list_merge_vars = $this->get_list_merge_vars( $list_field_data );
420
+ $list_merge_vars = apply_filters( 'mc4wp_merge_vars', $list_merge_vars, 0, $list_id );
421
 
422
  // send a subscribe request to MailChimp for each list
423
+ $result = $api->subscribe( $list_id, $this->data['EMAIL'], $list_merge_vars, $email_type, $this->form_options['double_optin'], $this->form_options['update_existing'], $this->form_options['replace_interests'], $this->form_options['send_welcome'] );
424
  }
425
 
426
+ do_action( 'mc4wp_after_subscribe', $this->data['EMAIL'], $this->data, 0, $result );
427
 
428
  if ( $result !== true ) {
429
  // subscribe request failed, store error.
430
  $this->success = false;
431
  $this->error_code = $result;
432
+ $this->mailchimp_error = $api->get_error_message();
433
  return false;
434
  }
435
 
436
+ // subscription succeeded
437
+
438
  // store user email in a cookie
439
+ $this->set_email_cookie( $this->data['EMAIL'] );
440
+
441
+ /**
442
+ * @deprecated Don't use, will be removed in v2.0
443
+ * TODO: remove this
444
+ */
445
+ $from_url = ( isset( $_SERVER['HTTP_REFERER'] ) ) ? $_SERVER['HTTP_REFERER'] : '';
446
+ do_action( 'mc4wp_subscribe_form', $this->data['EMAIL'], array_keys( $lists_data ), 0, $this->data, $from_url );
447
 
448
  // Store success result
449
  $this->success = true;
452
  }
453
 
454
  /**
455
+ * Format field value according to its type
456
  *
457
+ * @param $field_type
458
+ * @param $field_value
459
  *
460
+ * @return array|string
461
  */
462
+ private function format_field_value( $field_value, $field_type ) {
463
 
464
+ $field_type = strtolower( $field_type );
 
465
 
466
+ switch( $field_type ) {
467
 
468
+ // birthday fields need to be MM/DD for the MailChimp API
469
+ case 'birthday':
470
+ $field_value = (string) date( 'm/d', strtotime( $field_value ) );
471
+ break;
472
 
473
+ case 'address':
 
 
 
474
 
475
+ // auto-format if addr1 is not set
476
+ if( ! isset( $field_value['addr1'] ) ) {
477
 
478
+ // addr1, addr2, city, state, zip, country
479
+ $address_pieces = explode( ',', $field_value );
 
 
 
 
480
 
481
+ // try to fill it.... this is a long shot
482
+ $field_value = array(
483
+ 'addr1' => $address_pieces[0],
484
+ 'city' => ( isset( $address_pieces[1] ) ) ? $address_pieces[1] : '',
485
+ 'state' => ( isset( $address_pieces[2] ) ) ? $address_pieces[2] : '',
486
+ 'zip' => ( isset( $address_pieces[3] ) ) ? $address_pieces[3] : ''
487
+ );
488
 
 
 
 
489
  }
490
 
491
+ break;
492
+ }
493
 
494
+ /**
495
+ * @filter `mc4wp_format_field_value`
496
+ * @param mixed $field_value
497
+ * @param string $field_type
498
+ * @expects mixed
499
+ *
500
+ * Format a field value according to its MailChimp field type
501
+ */
502
+ $field_value = apply_filters( 'mc4wp_format_field_value', $field_value, $field_type );
503
 
504
+ return $field_value;
505
+ }
506
 
 
 
 
 
 
 
 
507
 
508
+ /**
509
+ * Adds global fields like OPTIN_IP, MC_LANGUAGE, OPTIN_DATE, etc to the list of user-submitted field data.
510
+ *
511
+ * @param $field_data
512
+ * @return array
513
+ */
514
+ private function get_list_merge_vars( $field_data ) {
515
 
516
+ $merge_vars = array(
517
+ 'OPTIN_IP' => sanitize_text_field( $_SERVER['REMOTE_ADDR'] )
518
+ );
519
 
520
+ // add MC_LANGUAGE
521
+ if( isset( $field_data['MC_LANGUAGE'] ) ) {
522
+ $field_data['MC_LANGUAGE'] = strtolower( substr( $field_data['MC_LANGUAGE'], 0, 2 ) );
523
  }
524
 
525
+ $merge_vars = array_merge( $merge_vars, $field_data );
526
+ return $merge_vars;
527
  }
528
 
529
  /**
543
  // allow plugins to override this email type
544
  $email_type = apply_filters( 'mc4wp_email_type', $email_type );
545
 
546
+ return (string) $email_type;
547
  }
548
 
549
  /**
571
  // allow plugins to alter the lists to subscribe to
572
  $lists = apply_filters( 'mc4wp_lists', $lists );
573
 
574
+ return (array) $lists;
575
  }
576
 
577
  /**
584
  /**
585
  * @filter `mc4wp_cookie_expiration_time`
586
  * @expects timestamp
587
+ * @default timestamp for 30 days from now
588
  *
589
  * Timestamp indicating when the email cookie expires, defaults to 30 days
590
  */
598
  *
599
  * @return string
600
  */
601
+ public function get_response_html( ) {
602
 
603
  // get all form messages
604
  $messages = $this->get_form_messages();
605
 
606
  // retrieve correct message
607
+ $type = ( $this->success ) ? 'success' : $this->error_code;
608
  $message = ( isset( $messages[ $type ] ) ) ? $messages[ $type ] : $messages['error'];
609
 
610
  /**
614
  *
615
  * Used to alter the error message, don't use. Use `mc4wp_form_messages` instead.
616
  */
617
+ $message['text'] = apply_filters('mc4wp_form_error_message', $message['text'], $this->error_code );
618
 
619
  $html = '<div class="mc4wp-alert mc4wp-'. $message['type'].'">' . $message['text'] . '</div>';
620
 
621
  // show additional MailChimp API errors to administrators
622
+ if( ! $this->success && current_user_can( 'manage_options' ) ) {
 
 
 
623
 
624
+ if( '' !== $this->mailchimp_error ) {
625
+ $html .= '<div class="mc4wp-alert mc4wp-error"><strong>Admin notice:</strong> '. $this->mailchimp_error . '</div>';
626
  }
627
  }
628
 
641
  * ...
642
  * );
643
  *
 
644
  * @return array
645
  */
646
  public function get_form_messages() {
678
 
679
  /**
680
  * @filter mc4wp_form_messages
681
+ * @expects array
682
  *
683
  * Allows registering custom form messages, useful if you're using custom validation using the `mc4wp_valid_form_request` filter.
684
  */
685
+ $messages = apply_filters( 'mc4wp_form_messages', $messages, 0 );
686
 
687
+ return (array) $messages;
688
  }
689
 
690
 
includes/class-mailchimp.php CHANGED
@@ -11,6 +11,9 @@ class MC4WP_MailChimp {
11
  * Get MailChimp lists
12
  * Try cache first, then try API, then try fallback cache.
13
  *
 
 
 
14
  * @return array
15
  */
16
  public function get_lists( $force_renewal = false, $force_fallback = false ) {
@@ -82,6 +85,8 @@ class MC4WP_MailChimp {
82
  * Get a given MailChimp list
83
  *
84
  * @param int $list_id
 
 
85
  *
86
  * @return bool
87
  */
@@ -104,7 +109,7 @@ class MC4WP_MailChimp {
104
  public function get_list_name( $id ) {
105
  $list = $this->get_list( $id );
106
 
107
- if( is_object( $list ) ) {
108
  return $list->name;
109
  }
110
 
@@ -114,7 +119,7 @@ class MC4WP_MailChimp {
114
  /**
115
  * Returns number of subscribers on given lists.
116
  *
117
- * @param array $list_ids of list id's.
118
  * @return int Sum of subscribers for given lists.
119
  */
120
  public function get_subscriber_count( $list_ids ) {
@@ -162,6 +167,8 @@ class MC4WP_MailChimp {
162
 
163
  /**
164
  * Build the group array object which will be stored in cache
 
 
165
  * @return object
166
  */
167
  public function strip_unnecessary_group_properties( $group ) {
@@ -172,6 +179,8 @@ class MC4WP_MailChimp {
172
 
173
  /**
174
  * Build the groupings array object which will be stored in cache
 
 
175
  * @return object
176
  */
177
  public function strip_unnecessary_grouping_properties( $grouping ) {
@@ -185,6 +194,8 @@ class MC4WP_MailChimp {
185
 
186
  /**
187
  * Build the merge_var array object which will be stored in cache
 
 
188
  * @return object
189
  */
190
  public function strip_unnecessary_merge_vars_properties( $merge_var ) {
11
  * Get MailChimp lists
12
  * Try cache first, then try API, then try fallback cache.
13
  *
14
+ * @param bool $force_renewal
15
+ * @param bool $force_fallback
16
+ *
17
  * @return array
18
  */
19
  public function get_lists( $force_renewal = false, $force_fallback = false ) {
85
  * Get a given MailChimp list
86
  *
87
  * @param int $list_id
88
+ * @param bool $force_renewal
89
+ * @param bool $force_fallback
90
  *
91
  * @return bool
92
  */
109
  public function get_list_name( $id ) {
110
  $list = $this->get_list( $id );
111
 
112
+ if( is_object( $list ) && isset( $list->name ) ) {
113
  return $list->name;
114
  }
115
 
119
  /**
120
  * Returns number of subscribers on given lists.
121
  *
122
+ * @param array $list_ids Array of list id's.
123
  * @return int Sum of subscribers for given lists.
124
  */
125
  public function get_subscriber_count( $list_ids ) {
167
 
168
  /**
169
  * Build the group array object which will be stored in cache
170
+ *
171
+ * @param object $group
172
  * @return object
173
  */
174
  public function strip_unnecessary_group_properties( $group ) {
179
 
180
  /**
181
  * Build the groupings array object which will be stored in cache
182
+ *
183
+ * @param object $grouping
184
  * @return object
185
  */
186
  public function strip_unnecessary_grouping_properties( $grouping ) {
194
 
195
  /**
196
  * Build the merge_var array object which will be stored in cache
197
+ *
198
+ * @param object $merge_var
199
  * @return object
200
  */
201
  public function strip_unnecessary_merge_vars_properties( $merge_var ) {
includes/class-plugin.php CHANGED
@@ -67,6 +67,8 @@ class MC4WP_Lite {
67
  'MC4WP_General_Integration' => 'integrations/class-general.php',
68
  'MC4WP_MultiSite_Integration' => 'integrations/class-multisite.php',
69
  'MC4WP_Registration_Form_Integration' => 'integrations/class-registration-form.php',
 
 
70
  );
71
 
72
  }
67
  'MC4WP_General_Integration' => 'integrations/class-general.php',
68
  'MC4WP_MultiSite_Integration' => 'integrations/class-multisite.php',
69
  'MC4WP_Registration_Form_Integration' => 'integrations/class-registration-form.php',
70
+ 'MC4WP_WooCommerce_Integration' => 'integrations/class-woocommerce.php',
71
+ 'MC4WP_EDD_Integration' => 'integrations/class-edd.php'
72
  );
73
 
74
  }
includes/functions/general.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- if( ! defined("MC4WP_LITE_VERSION") ) {
4
  header( 'Status: 403 Forbidden' );
5
  header( 'HTTP/1.1 403 Forbidden' );
6
  exit;
@@ -13,7 +13,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
13
  * @param string $key
14
  * @return array
15
  */
16
- function mc4wp_get_options( $key = null ) {
17
  static $options = null;
18
 
19
  if( null === $options ) {
@@ -35,12 +35,15 @@ function mc4wp_get_options( $key = null ) {
35
  'show_at_multisite_form' => 0,
36
  'show_at_buddypress_form' => 0,
37
  'show_at_bbpress_forms' => 0,
 
 
38
  'lists' => array(),
39
- 'double_optin' => 1
 
40
  ),
41
  'form' => array(
42
  'css' => 'default',
43
- 'markup' => "<p>\n\t<label for=\"mc4wp_email\">{$email_label}: </label>\n\t<input type=\"email\" id=\"mc4wp_email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</p>\n\n<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>",
44
  'text_success' => __( 'Thank you, your sign-up request was successful! Please check your e-mail inbox.', 'mailchimp-for-wp' ),
45
  'text_error' => __( 'Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp' ),
46
  'text_invalid_email' => __( 'Please provide a valid email address.', 'mailchimp-for-wp' ),
@@ -50,7 +53,10 @@ function mc4wp_get_options( $key = null ) {
50
  'redirect' => '',
51
  'lists' => array(),
52
  'double_optin' => 1,
53
- 'hide_after_success' => 0
 
 
 
54
  )
55
  );
56
 
@@ -62,18 +68,18 @@ function mc4wp_get_options( $key = null ) {
62
 
63
  $options = array();
64
  foreach ( $db_keys_option_keys as $db_key => $option_key ) {
65
- $option = get_option( $db_key, false );
66
 
67
  // add option to database to prevent query on every pageload
68
- if ( $option === false ) {
69
  add_option( $db_key, $defaults[$option_key] );
70
  }
71
 
72
- $options[$option_key] = array_merge( $defaults[$option_key], (array) $option );
73
  }
74
  }
75
 
76
- if( null !== $key ) {
77
  return $options[$key];
78
  }
79
 
1
  <?php
2
 
3
+ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
4
  header( 'Status: 403 Forbidden' );
5
  header( 'HTTP/1.1 403 Forbidden' );
6
  exit;
13
  * @param string $key
14
  * @return array
15
  */
16
+ function mc4wp_get_options( $key = '' ) {
17
  static $options = null;
18
 
19
  if( null === $options ) {
35
  'show_at_multisite_form' => 0,
36
  'show_at_buddypress_form' => 0,
37
  'show_at_bbpress_forms' => 0,
38
+ 'show_at_woocommerce_checkout' => 0,
39
+ 'show_at_edd_checkout' => 0,
40
  'lists' => array(),
41
+ 'double_optin' => 1,
42
+ 'woocommerce_position' => 'order'
43
  ),
44
  'form' => array(
45
  'css' => 'default',
46
+ 'markup' => "<p>\n\t<label>{$email_label}: </label>\n\t<input type=\"email\" id=\"mc4wp_email\" name=\"EMAIL\" placeholder=\"{$email_placeholder}\" required />\n</p>\n\n<p>\n\t<input type=\"submit\" value=\"{$signup_button}\" />\n</p>",
47
  'text_success' => __( 'Thank you, your sign-up request was successful! Please check your e-mail inbox.', 'mailchimp-for-wp' ),
48
  'text_error' => __( 'Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp' ),
49
  'text_invalid_email' => __( 'Please provide a valid email address.', 'mailchimp-for-wp' ),
53
  'redirect' => '',
54
  'lists' => array(),
55
  'double_optin' => 1,
56
+ 'hide_after_success' => 0,
57
+ 'update_existing' => false,
58
+ 'replace_interests' => true,
59
+ 'send_welcome' => false
60
  )
61
  );
62
 
68
 
69
  $options = array();
70
  foreach ( $db_keys_option_keys as $db_key => $option_key ) {
71
+ $option = (array) get_option( $db_key, array() );
72
 
73
  // add option to database to prevent query on every pageload
74
+ if ( count( $option ) === 0 ) {
75
  add_option( $db_key, $defaults[$option_key] );
76
  }
77
 
78
+ $options[$option_key] = array_merge( $defaults[$option_key], $option );
79
  }
80
  }
81
 
82
+ if( '' !== $key ) {
83
  return $options[$key];
84
  }
85
 
includes/functions/template.php CHANGED
@@ -67,8 +67,8 @@ function mc4wp_replace_variables( $text, $list_ids = array() ) {
67
  }
68
 
69
  // replace {email} tag
70
- if( isset( $_GET['email'] ) ) {
71
- $email = esc_attr( $_GET['email'] );
72
  } elseif( isset( $_COOKIE['mc4wp_email'] ) ) {
73
  $email = esc_attr( $_COOKIE['mc4wp_email'] );
74
  } else {
67
  }
68
 
69
  // replace {email} tag
70
+ if( isset( $_GET['mc4wp_email'] ) ) {
71
+ $email = esc_attr( $_GET['mc4wp_email'] );
72
  } elseif( isset( $_COOKIE['mc4wp_email'] ) ) {
73
  $email = esc_attr( $_COOKIE['mc4wp_email'] );
74
  } else {
includes/integrations/class-edd.php ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // prevent direct file access
4
+ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
5
+ header( 'Status: 403 Forbidden' );
6
+ header( 'HTTP/1.1 403 Forbidden' );
7
+ exit;
8
+ }
9
+
10
+ class MC4WP_EDD_Integration extends MC4WP_Integration {
11
+
12
+ /**
13
+ * @var string
14
+ */
15
+ protected $type = 'edd_checkout';
16
+
17
+ /**
18
+ * Constructor
19
+ */
20
+ public function __construct() {
21
+
22
+ parent::__construct();
23
+
24
+ add_action( 'edd_purchase_form_user_info', array( $this, 'output_checkbox' ) );
25
+ add_action( 'edd_payment_meta', array( $this, 'save_checkbox_value' ) );
26
+ add_action( 'edd_complete_purchase', array( $this, 'subscribe_from_edd'), 50);
27
+ }
28
+
29
+ /**
30
+ * @param array $meta
31
+ *
32
+ * @return array
33
+ */
34
+ public function save_checkbox_value( $meta ) {
35
+
36
+ // don't save anything if the checkbox was not checked
37
+ if( ! $this->checkbox_was_checked() ) {
38
+ return $meta;
39
+ }
40
+
41
+ $meta['_mc4wp_optin'] = 1;
42
+ return $meta;
43
+ }
44
+
45
+ /**
46
+ * @param int $payment_id The ID of the payment
47
+ *
48
+ * @return bool|string
49
+ */
50
+ public function subscribe_from_edd( $payment_id ) {
51
+
52
+ $meta = edd_get_payment_meta( $payment_id );
53
+
54
+ if( ! is_array( $meta ) || ! isset( $meta['_mc4wp_optin'] ) || ! $meta['_mc4wp_optin'] ) {
55
+ return false;
56
+ }
57
+
58
+ $email = (string) edd_get_payment_user_email( $payment_id );
59
+ $merge_vars = array();
60
+
61
+ // add first and last name to merge vars, if given
62
+ $user_info = (array) edd_get_payment_meta_user_info( $payment_id );
63
+
64
+ if( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) {
65
+ $merge_vars['NAME'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
66
+ }
67
+
68
+ if( isset( $user_info['first_name'] ) ) {
69
+ $merge_vars['FNAME'] = $user_info['first_name'];
70
+ }
71
+
72
+ if( isset( $user_info['last_name'] ) ) {
73
+ $merge_vars['LNAME'] = $user_info['last_name'];
74
+ }
75
+
76
+
77
+
78
+ return $this->subscribe( $email, $merge_vars, $this->type );
79
+ }
80
+
81
+ }
82
+
includes/integrations/class-integration.php CHANGED
@@ -18,6 +18,11 @@ abstract class MC4WP_Integration {
18
  */
19
  protected $checkbox_name = '_mc4wp_subscribe';
20
 
 
 
 
 
 
21
  /**
22
  * Constructor
23
  */
@@ -25,6 +30,54 @@ abstract class MC4WP_Integration {
25
  $this->checkbox_name = '_mc4wp_subscribe' . '_' . $this->type;
26
  }
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  /**
29
  * Was the honeypot filled?
30
  *
@@ -54,38 +107,27 @@ abstract class MC4WP_Integration {
54
 
55
  /**
56
  * Outputs a checkbox
57
- *
58
- * @param string $hook
59
  */
60
  public function output_checkbox() {
61
  echo $this->get_checkbox();
62
  }
63
 
64
  /**
65
- * @param mixed $hook Array or string
66
  * @return string
67
  */
68
  public function get_checkbox( $args = array() ) {
69
 
70
- $opts = mc4wp_get_options( 'checkbox' );
71
-
72
- $checked = $opts['precheck'] ? "checked" : '';
73
 
74
  // set label text
75
  if ( isset( $args['labels'][0] ) ) {
76
  // cf 7 shortcode
77
  $label = $args['labels'][0];
78
- } else if ( isset( $opts['text_' . $this->type . '_label'] ) && ! empty( $opts['text_' . $this->type . '_label'] ) ) {
79
- // custom label text was set
80
- $label = __( $opts['text_' . $this->type . '_label'], 'mailchimp-for-wp' );
81
  } else {
82
- // default label text
83
- $label = __( $opts['label'], 'mailchimp-for-wp' );
84
  }
85
 
86
- // replace label variables
87
- $label = mc4wp_replace_variables( $label, $opts['lists'] );
88
-
89
  // CF7 checkbox?
90
  if( is_array( $args ) && isset( $args['type'] ) ) {
91
 
@@ -105,7 +147,7 @@ abstract class MC4WP_Integration {
105
  // checkbox
106
  $content .= '<p id="mc4wp-checkbox">';
107
  $content .= '<label>';
108
- $content .= '<input type="checkbox" name="'. $this->checkbox_name .'" value="1" '. $checked . ' /> ';
109
  $content .= $label;
110
  $content .= '</label>';
111
  $content .= '</p>';
@@ -124,7 +166,7 @@ abstract class MC4WP_Integration {
124
  protected function get_lists() {
125
 
126
  // get checkbox lists options
127
- $opts = mc4wp_get_options( 'checkbox' );
128
  $lists = $opts['lists'];
129
 
130
  // get lists from form, if set.
@@ -134,6 +176,9 @@ abstract class MC4WP_Integration {
134
 
135
  // make sure lists is an array
136
  if( ! is_array( $lists ) ) {
 
 
 
137
  $lists = array( $lists );
138
  }
139
 
@@ -142,22 +187,23 @@ abstract class MC4WP_Integration {
142
  // allow plugins to filter final
143
  $lists = apply_filters( 'mc4wp_lists', $lists );
144
 
145
- return $lists;
146
  }
147
 
 
148
  /**
149
  * Makes a subscription request
150
  *
151
  * @param string $email
152
  * @param array $merge_vars
153
  * @param string $signup_type
154
- * @param int $comment_ID
155
  * @return boolean
156
  */
157
  protected function subscribe( $email, array $merge_vars = array(), $signup_type = 'comment', $comment_id = null ) {
158
 
159
  $api = mc4wp_get_api();
160
- $opts = mc4wp_get_options( 'checkbox' );
161
  $lists = $this->get_lists();
162
 
163
  if( empty( $lists) ) {
@@ -188,23 +234,57 @@ abstract class MC4WP_Integration {
188
 
189
  // set ip address
190
  if( ! isset( $merge_vars['OPTIN_IP'] ) && isset( $_SERVER['REMOTE_ADDR'] ) ) {
191
- $merge_vars['OPTIN_IP'] = $_SERVER['REMOTE_ADDR'];
192
  }
193
 
194
  $result = false;
 
 
 
 
 
 
 
 
 
195
  $merge_vars = apply_filters( 'mc4wp_merge_vars', $merge_vars, $signup_type );
 
 
 
 
 
 
 
 
196
  $email_type = apply_filters( 'mc4wp_email_type', 'html' );
197
 
 
 
 
 
 
 
 
198
  do_action( 'mc4wp_before_subscribe', $email, $merge_vars );
199
 
200
  foreach( $lists as $list_id ) {
201
  $result = $api->subscribe( $list_id, $email, $merge_vars, $email_type, $opts['double_optin'], false, true );
202
  }
203
 
 
 
 
 
 
 
 
 
204
  do_action( 'mc4wp_after_subscribe', $email, $merge_vars, $result );
205
 
206
  if ( $result === true ) {
207
- $from_url = ( isset($_SERVER['HTTP_REFERER'] ) ) ? $_SERVER['HTTP_REFERER'] : '';
 
 
208
  do_action( 'mc4wp_subscribe_checkbox', $email, $lists, $signup_type, $merge_vars, $comment_id, $from_url );
209
  }
210
 
18
  */
19
  protected $checkbox_name = '_mc4wp_subscribe';
20
 
21
+ /**
22
+ * @var array
23
+ */
24
+ private $options;
25
+
26
  /**
27
  * Constructor
28
  */
30
  $this->checkbox_name = '_mc4wp_subscribe' . '_' . $this->type;
31
  }
32
 
33
+ /**
34
+ * Get the checkbox options
35
+ *
36
+ * @return array
37
+ */
38
+ public function get_options() {
39
+
40
+ if( $this->options === null ) {
41
+ $this->options = mc4wp_get_options( 'checkbox' );
42
+ }
43
+
44
+ return $this->options;
45
+ }
46
+
47
+ /**
48
+ * Should the checkbox be pre-checked?
49
+ *
50
+ * @return bool
51
+ */
52
+ public function is_prechecked() {
53
+ $opts = $this->get_options();
54
+ return (bool) $opts['precheck'];
55
+ }
56
+
57
+ /**
58
+ * Get the text for the label element
59
+ *
60
+ * @return string
61
+ */
62
+ public function get_label_text() {
63
+
64
+ $opts = $this->get_options();
65
+
66
+ // Get general label text
67
+ $label = $opts['label'];
68
+
69
+ // Override label text if a specific text for this integration is set
70
+ if ( isset( $opts['text_' . $this->type . '_label'] ) && ! empty( $opts['text_' . $this->type . '_label'] ) ) {
71
+ // custom label text was set
72
+ $label = $opts['text_' . $this->type . '_label'];
73
+ }
74
+
75
+ // replace label variables
76
+ $label = mc4wp_replace_variables( $label, $opts['lists'] );
77
+
78
+ return $label;
79
+ }
80
+
81
  /**
82
  * Was the honeypot filled?
83
  *
107
 
108
  /**
109
  * Outputs a checkbox
 
 
110
  */
111
  public function output_checkbox() {
112
  echo $this->get_checkbox();
113
  }
114
 
115
  /**
116
+ * @param mixed $args Array or string
117
  * @return string
118
  */
119
  public function get_checkbox( $args = array() ) {
120
 
121
+ $checked = ( $this->is_prechecked() ) ? 'checked ' : '';
 
 
122
 
123
  // set label text
124
  if ( isset( $args['labels'][0] ) ) {
125
  // cf 7 shortcode
126
  $label = $args['labels'][0];
 
 
 
127
  } else {
128
+ $label = $this->get_label_text();
 
129
  }
130
 
 
 
 
131
  // CF7 checkbox?
132
  if( is_array( $args ) && isset( $args['type'] ) ) {
133
 
147
  // checkbox
148
  $content .= '<p id="mc4wp-checkbox">';
149
  $content .= '<label>';
150
+ $content .= '<input type="checkbox" name="'. esc_attr( $this->checkbox_name ) .'" value="1" '. $checked . ' /> ';
151
  $content .= $label;
152
  $content .= '</label>';
153
  $content .= '</p>';
166
  protected function get_lists() {
167
 
168
  // get checkbox lists options
169
+ $opts = $this->get_options();
170
  $lists = $opts['lists'];
171
 
172
  // get lists from form, if set.
176
 
177
  // make sure lists is an array
178
  if( ! is_array( $lists ) ) {
179
+
180
+ // sanitize value
181
+ $lists = sanitize_text_field( $lists );
182
  $lists = array( $lists );
183
  }
184
 
187
  // allow plugins to filter final
188
  $lists = apply_filters( 'mc4wp_lists', $lists );
189
 
190
+ return (array) $lists;
191
  }
192
 
193
+
194
  /**
195
  * Makes a subscription request
196
  *
197
  * @param string $email
198
  * @param array $merge_vars
199
  * @param string $signup_type
200
+ * @param int $comment_id
201
  * @return boolean
202
  */
203
  protected function subscribe( $email, array $merge_vars = array(), $signup_type = 'comment', $comment_id = null ) {
204
 
205
  $api = mc4wp_get_api();
206
+ $opts = $this->get_options();
207
  $lists = $this->get_lists();
208
 
209
  if( empty( $lists) ) {
234
 
235
  // set ip address
236
  if( ! isset( $merge_vars['OPTIN_IP'] ) && isset( $_SERVER['REMOTE_ADDR'] ) ) {
237
+ $merge_vars['OPTIN_IP'] = sanitize_text_field( $_SERVER['REMOTE_ADDR'] );
238
  }
239
 
240
  $result = false;
241
+
242
+ /**
243
+ * @filter `mc4wp_merge_vars`
244
+ * @expects array
245
+ * @param array $merge_vars
246
+ * @param string $signup_type
247
+ *
248
+ * Use this to filter the final merge vars before the request is sent to MailChimp
249
+ */
250
  $merge_vars = apply_filters( 'mc4wp_merge_vars', $merge_vars, $signup_type );
251
+
252
+ /**
253
+ * @filter `mc4wp_merge_vars`
254
+ * @expects string
255
+ * @param string $email_type
256
+ *
257
+ * Use this to change the email type this users should receive
258
+ */
259
  $email_type = apply_filters( 'mc4wp_email_type', 'html' );
260
 
261
+ /**
262
+ * @action `mc4wp_before_subscribe`
263
+ * @param string $email
264
+ * @param array $merge_vars
265
+ *
266
+ * Runs before the request is sent to MailChimp
267
+ */
268
  do_action( 'mc4wp_before_subscribe', $email, $merge_vars );
269
 
270
  foreach( $lists as $list_id ) {
271
  $result = $api->subscribe( $list_id, $email, $merge_vars, $email_type, $opts['double_optin'], false, true );
272
  }
273
 
274
+ /**
275
+ * @action `mc4wp_after_subscribe`
276
+ * @param string $email
277
+ * @param array $merge_vars
278
+ * @param boolean $result
279
+ *
280
+ * Runs after the request is sent to MailChimp
281
+ */
282
  do_action( 'mc4wp_after_subscribe', $email, $merge_vars, $result );
283
 
284
  if ( $result === true ) {
285
+
286
+ // TODO: Remove this
287
+ $from_url = ( isset( $_SERVER['HTTP_REFERER'] ) ) ? sanitize_text_field( $_SERVER['HTTP_REFERER'] ) : '';
288
  do_action( 'mc4wp_subscribe_checkbox', $email, $lists, $signup_type, $merge_vars, $comment_id, $from_url );
289
  }
290
 
includes/integrations/class-woocommerce.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // prevent direct file access
4
+ if( ! defined( 'MC4WP_LITE_VERSION' ) ) {
5
+ header( 'Status: 403 Forbidden' );
6
+ header( 'HTTP/1.1 403 Forbidden' );
7
+ exit;
8
+ }
9
+
10
+ class MC4WP_WooCommerce_Integration extends MC4WP_Integration {
11
+
12
+ /**
13
+ * @var string
14
+ */
15
+ protected $type = 'woocommerce_checkout';
16
+
17
+ /**
18
+ * Constructor
19
+ */
20
+ public function __construct() {
21
+
22
+ parent::__construct();
23
+
24
+ add_filter( 'woocommerce_checkout_fields', array( $this, 'add_checkout_field' ), 20 );
25
+
26
+ add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'save_woocommerce_checkout_checkbox_value' ) );
27
+ add_action( 'woocommerce_payment_complete', array( $this, 'subscribe_from_woocommerce_checkout' ) );
28
+ }
29
+
30
+ /**
31
+ * @return string
32
+ */
33
+ public function get_position() {
34
+ $opts = $this->get_options();
35
+ return $opts['woocommerce_position'];
36
+ }
37
+
38
+ /**
39
+ * @param $fields
40
+ *
41
+ * @return mixed
42
+ */
43
+ public function add_checkout_field( $fields ) {
44
+
45
+ $default = ( $this->is_prechecked() ) ? 1 : 0;
46
+ $label = $this->get_label_text();
47
+ $position = $this->get_position();
48
+
49
+ $fields[ $position ]['_mc4wp_subscribe_woocommerce_checkout'] = array(
50
+ 'type' => 'checkbox',
51
+ 'label' => $label,
52
+ 'default' => $default,
53
+ );
54
+
55
+ return $fields;
56
+ }
57
+
58
+ /**
59
+ * @param int $order_id
60
+ */
61
+ public function save_woocommerce_checkout_checkbox_value( $order_id )
62
+ {
63
+ update_post_meta( $order_id, '_mc4wp_optin', $this->checkbox_was_checked() );
64
+ }
65
+
66
+ /**
67
+ * @param int $order_id
68
+ * @return boolean
69
+ */
70
+ public function subscribe_from_woocommerce_checkout( $order_id ) {
71
+
72
+ $do_optin = get_post_meta( $order_id, '_mc4wp_optin', true );
73
+
74
+ if( $do_optin ) {
75
+
76
+ $order = new WC_Order( $order_id );
77
+ $email = $order->billing_email;
78
+ $merge_vars = array(
79
+ 'NAME' => "{$order->billing_first_name} {$order->billing_last_name}",
80
+ 'FNAME' => $order->billing_first_name,
81
+ 'LNAME' => $order->billing_last_name
82
+
83
+ );
84
+
85
+ return $this->subscribe( $email, $merge_vars, $this->type );
86
+ }
87
+
88
+ return false;
89
+ }
90
+
91
+ }
includes/views/api-settings.php CHANGED
@@ -7,7 +7,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
7
  }
8
 
9
  ?>
10
- <div id="mc4wp" class="wrap mc4wp-settings">
11
 
12
  <h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'MailChimp Settings', 'mailchimp-for-wp' ); ?></h2>
13
 
7
  }
8
 
9
  ?>
10
+ <div id="mc4wp-admin" class="wrap mc4wp-settings">
11
 
12
  <h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'MailChimp Settings', 'mailchimp-for-wp' ); ?></h2>
13
 
includes/views/checkbox-settings.php CHANGED
@@ -6,7 +6,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
6
  }
7
 
8
  ?>
9
- <div id="mc4wp" class="wrap mc4wp-settings">
10
 
11
  <h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'Checkbox Settings', 'mailchimp-for-wp' ); ?></h2>
12
 
@@ -96,7 +96,16 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
96
  <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[css]" value="1" <?php checked( $opts['css'], 1 ); ?> /> <?php _e( 'Yes', 'mailchimp-for-wp' ); ?></label> &nbsp; <label><input type="radio" name="mc4wp_lite_checkbox[css]" value="0" <?php checked( $opts['css'], 0 ); ?> /> <?php _e( 'No', 'mailchimp-for-wp' ); ?></label></td>
97
  <td class="desc"><?php _e( 'Select "yes" if the checkbox appears in a weird place.', 'mailchimp-for-wp' ); ?></td>
98
  </tr>
99
-
 
 
 
 
 
 
 
 
 
100
 
101
  </table>
102
 
6
  }
7
 
8
  ?>
9
+ <div id="mc4wp-admin" class="wrap mc4wp-settings">
10
 
11
  <h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'Checkbox Settings', 'mailchimp-for-wp' ); ?></h2>
12
 
96
  <td class="nowrap"><label><input type="radio" name="mc4wp_lite_checkbox[css]" value="1" <?php checked( $opts['css'], 1 ); ?> /> <?php _e( 'Yes', 'mailchimp-for-wp' ); ?></label> &nbsp; <label><input type="radio" name="mc4wp_lite_checkbox[css]" value="0" <?php checked( $opts['css'], 0 ); ?> /> <?php _e( 'No', 'mailchimp-for-wp' ); ?></label></td>
97
  <td class="desc"><?php _e( 'Select "yes" if the checkbox appears in a weird place.', 'mailchimp-for-wp' ); ?></td>
98
  </tr>
99
+ <tr valign="top" id="woocommerce-settings" <?php if( ! $opts['show_at_woocommerce_checkout'] ) { ?>style="display: none;"<?php } ?>>
100
+ <th scope="row"><?php _e( 'WooCommerce checkbox position', 'mailchimp-for-wp' ); ?></th>
101
+ <td class="nowrap">
102
+ <select name="mc4wp_lite_checkbox[woocommerce_position]">
103
+ <option value="billing" <?php selected( $opts['woocommerce_position'], 'billing' ); ?>><?php _e( 'After the billing details', 'mailchimp-for-wp' ); ?></option>
104
+ <option value="order" <?php selected( $opts['woocommerce_position'], 'order' ); ?>><?php _e( 'After the additional information', 'mailchimp-for-wp' ); ?></option>
105
+ </select>
106
+ </td>
107
+ <td class="desc"><?php _e( 'Choose the position for the checkbox in your WooCommerce checkout form.', 'mailchimp-for-wp' ); ?></td>
108
+ </tr>
109
 
110
  </table>
111
 
includes/views/form-settings.php CHANGED
@@ -4,7 +4,7 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
4
  header( 'HTTP/1.1 403 Forbidden' );
5
  exit;
6
  } ?>
7
- <div id="mc4wp" class="wrap mc4wp-settings">
8
 
9
  <h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'Form Settings', 'mailchimp-for-wp' ); ?></h2>
10
 
4
  header( 'HTTP/1.1 403 Forbidden' );
5
  exit;
6
  } ?>
7
+ <div id="mc4wp-admin" class="wrap mc4wp-settings">
8
 
9
  <h2><img src="<?php echo MC4WP_LITE_PLUGIN_URL . 'assets/img/menu-icon.png'; ?>" /> <?php _e( 'MailChimp for WordPress', 'mailchimp-for-wp' ); ?>: <?php _e( 'Form Settings', 'mailchimp-for-wp' ); ?></h2>
10
 
languages/mailchimp-for-wp-af_ZA.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/af_ZA/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/af_ZA/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-bg_BG.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/bg_BG/)\n"
13
  "MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "Настройки"
32
 
@@ -43,80 +43,79 @@ msgid "MailChimp Settings"
43
  msgstr "Настройки на MailChimp"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "Отметки"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Форми"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Коментар от"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Форма за регистрация"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "Форми за мултисайт"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "BuddyPress регистрация"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr "(достъпно само за Pro лиценз)"
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr "MailChimp кеша беше обновен."
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr "Възникна грешка при обновяването на кеша - опитайте отново по-късно."
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr "Поле за email. Пример: <code>%s</code>"
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr "Бутон за събмит. Пример: <code>%s</code>"
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr "Регистрация"
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr "'%s' поле"
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr "MailChimp грешка:"
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr "Моля изберете поне един лист за който да се абонирате."
122
 
@@ -145,53 +144,54 @@ msgid ""
145
  msgstr "Може да редактирате вашата форма за регистрация в настройките на %sMailChimp за WordPress."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr "Email адрес"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr "Вашият email адрес"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr "Регистрация"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Абонирай ме за бюлетина!"
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Благодарим ви, успешно заявихте регистрация! Моля, проверете вашата поща за инструкции."
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Възникна грешка. Моля, опитахйте отново."
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr "Моля въведете валиден email адрес"
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Въведеният email адрес е вече абониран, благодаря!"
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Моля, попълнете CAPTCHA."
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr "Моля, попълнете задължителните полета."
197
 
@@ -259,39 +259,40 @@ msgstr "Да"
259
  msgid "No"
260
  msgstr "Не"
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp за WordPress - Грешка"
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Моля, изберете лист за абонирате в <a href=\"%s\">настройките за отметки</a>."
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Това съобщение е видимо само за администраторите за целите на отстраняване на грешки."
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "Сървърът на MailChimp върна следната грешка като отговор на заявката за регистрация:"
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Това е информацията, която беше изпратена към MailChimp:"
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr "Email адрес:"
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr "Слей променливите:"
297
 
@@ -455,8 +456,29 @@ msgstr "Зареди CSS по подразбиране?"
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Изберете \"да\" ако отметката не изглежда на правилното място."
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr "Настройки на формите"
@@ -481,6 +503,12 @@ msgstr ""
481
  msgid "Yes, load basic form styles"
482
  msgstr ""
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -543,7 +571,7 @@ msgid "Form mark-up"
543
  msgstr ""
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr ""
549
 
@@ -675,74 +703,123 @@ msgstr ""
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr ""
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr ""
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr ""
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
689
- msgid "Replaced with the form response (error or success messages)."
690
  msgstr ""
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
- msgid "Replaced with a captcha field."
695
  msgstr ""
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
- msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr ""
701
 
702
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
- msgid "Replaced with the current site language, eg: %s"
705
  msgstr ""
706
 
707
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
- msgid "Replaced with the visitor's IP address"
710
  msgstr ""
711
 
712
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr ""
716
 
717
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr ""
721
 
722
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
- msgid ""
725
- "Replaced with the logged in user's email (or nothing, if there is no logged "
726
- "in user)"
727
  msgstr ""
728
 
729
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
- msgid "First name of the current user"
 
 
732
  msgstr ""
733
 
734
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
- msgid "Last name of the current user"
737
  msgstr ""
738
 
739
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
- msgid "Current user ID"
742
  msgstr ""
743
 
744
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
746
  msgid "Current URL"
747
  msgstr ""
748
 
@@ -830,11 +907,20 @@ msgstr ""
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
 
 
 
 
 
 
 
 
833
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
  "now</a> for an even better plugin, you will love it."
835
  msgstr ""
836
 
837
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
838
  msgid ""
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
  msgstr ""
@@ -860,27 +946,35 @@ msgid "Show a token of your appreciation"
860
  msgstr ""
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
863
- msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr ""
865
 
866
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
  msgstr ""
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
  msgstr ""
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
  msgstr ""
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
882
  msgstr ""
883
 
 
 
 
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
@@ -896,69 +990,64 @@ msgstr ""
896
  msgid "More information about MailChimp for WP Pro"
897
  msgstr ""
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr ""
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr ""
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr ""
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr ""
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr ""
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr ""
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr ""
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr ""
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr ""
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr ""
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr ""
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr ""
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr ""
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr ""
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1064,13 @@ msgstr ""
975
  msgid "%sShow generated CSS%s"
976
  msgstr ""
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr ""
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr ""
987
 
@@ -1019,29 +1108,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr ""
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
  msgstr ""
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr ""
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr ""
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr ""
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr ""
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr ""
1047
 
@@ -1076,51 +1173,56 @@ msgid "you are receiving updates"
1076
  msgstr ""
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
  msgstr ""
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
  msgstr ""
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr ""
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr ""
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr ""
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr ""
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr ""
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr ""
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr ""
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr ""
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr ""
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr ""
1126
 
@@ -1134,25 +1236,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr ""
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr ""
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr ""
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr ""
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr ""
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr ""
@@ -1179,7 +1298,7 @@ msgstr ""
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr ""
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1309,8 @@ msgid "ID"
1190
  msgstr ""
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr ""
1197
 
@@ -1237,10 +1356,6 @@ msgstr ""
1237
  msgid "Email"
1238
  msgstr ""
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr ""
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr ""
@@ -1250,7 +1365,7 @@ msgid "Source"
1250
  msgstr ""
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
  msgstr ""
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1262,7 +1377,7 @@ msgid "Log items deleted."
1262
  msgstr ""
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr ""
1268
 
@@ -1270,44 +1385,44 @@ msgstr ""
1270
  msgid "deleted"
1271
  msgstr ""
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr ""
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr ""
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr ""
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr ""
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr ""
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr ""
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr ""
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr ""
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr ""
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr ""
1313
 
@@ -1385,23 +1500,6 @@ msgid ""
1385
  "forms."
1386
  msgstr ""
1387
 
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr ""
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr ""
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr ""
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr ""
1404
-
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
1407
  msgstr ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/bg_BG/)\n"
13
  "MIME-Version: 1.0\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "Настройки"
32
 
43
  msgstr "Настройки на MailChimp"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "Отметки"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Форми"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr ""
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Коментар от"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Форма за регистрация"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "Форми за мултисайт"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "BuddyPress регистрация"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr ""
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr "MailChimp кеша беше обновен."
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr "Възникна грешка при обновяването на кеша - опитайте отново по-късно."
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
  msgstr "Поле за email. Пример: <code>%s</code>"
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
  msgstr "Бутон за събмит. Пример: <code>%s</code>"
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
  msgstr "Регистрация"
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
  msgstr "'%s' поле"
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr "Моля изберете поне един лист за който да се абонирате."
121
 
144
  msgstr "Може да редактирате вашата форма за регистрация в настройките на %sMailChimp за WordPress."
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr "Email адрес"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr "Вашият email адрес"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr "Регистрация"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Абонирай ме за бюлетина!"
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Благодарим ви, успешно заявихте регистрация! Моля, проверете вашата поща за инструкции."
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Възникна грешка. Моля, опитахйте отново."
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr "Моля въведете валиден email адрес"
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Въведеният email адрес е вече абониран, благодаря!"
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Моля, попълнете CAPTCHA."
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
  msgstr "Моля, попълнете задължителните полета."
197
 
259
  msgid "No"
260
  msgstr "Не"
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp за WordPress - Грешка"
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Моля, изберете лист за абонирате в <a href=\"%s\">настройките за отметки</a>."
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Това съобщение е видимо само за администраторите за целите на отстраняване на грешки."
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "Сървърът на MailChimp върна следната грешка като отговор на заявката за регистрация:"
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Това е информацията, която беше изпратена към MailChimp:"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
  msgstr "Email адрес:"
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
  msgstr "Слей променливите:"
298
 
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Изберете \"да\" ако отметката не изглежда на правилното място."
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr ""
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr ""
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr ""
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr ""
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
  msgstr "Настройки на формите"
503
  msgid "Yes, load basic form styles"
504
  msgstr ""
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "(достъпно само за Pro лиценз)"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr ""
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr ""
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr ""
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr ""
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr ""
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr ""
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr ""
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr ""
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr ""
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr ""
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr ""
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
  msgstr ""
763
 
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
+ msgid "Replaced with the form response (error or success messages)."
767
  msgstr ""
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
+ msgid "Replaced with a captcha field."
772
  msgstr ""
773
 
774
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
+ msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr ""
778
 
779
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
+ msgid "Replaced with the current site language, eg: %s"
782
  msgstr ""
783
 
784
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
+ msgid "Replaced with the visitor's IP address"
787
  msgstr ""
788
 
789
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr ""
793
 
794
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
797
  msgstr ""
798
 
799
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
+ msgid ""
802
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
803
+ "in user)"
804
  msgstr ""
805
 
806
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
+ msgid "First name of the current user"
809
  msgstr ""
810
 
811
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
+ msgid "Last name of the current user"
814
  msgstr ""
815
 
816
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
+ msgid "Current user ID"
819
+ msgstr ""
820
+
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr ""
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr ""
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr ""
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr ""
946
  msgstr ""
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
  msgstr ""
951
 
952
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
+ msgid "Leave a %s plugin review on WordPress.org"
954
+ msgstr ""
955
+
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr ""
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr ""
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
  msgstr ""
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr ""
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr ""
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr ""
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr ""
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr ""
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr ""
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr ""
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr ""
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr ""
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr ""
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr ""
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr ""
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr ""
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr ""
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr ""
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr ""
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr ""
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr ""
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr ""
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr ""
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
  msgstr ""
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr ""
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr ""
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr ""
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr ""
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr ""
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr ""
1144
 
1173
  msgstr ""
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
  msgstr ""
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr ""
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr ""
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr ""
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr ""
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr ""
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr ""
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr ""
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr ""
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr ""
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr ""
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr ""
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr ""
1228
 
1236
  " correct form ID."
1237
  msgstr ""
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr ""
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr ""
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr ""
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr ""
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr ""
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr ""
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr ""
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr ""
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr ""
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr ""
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr ""
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr ""
1316
 
1356
  msgid "Email"
1357
  msgstr ""
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr ""
1365
  msgstr ""
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
  msgstr ""
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1377
  msgstr ""
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr ""
1383
 
1385
  msgid "deleted"
1386
  msgstr ""
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr ""
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr ""
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr ""
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr ""
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr ""
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr ""
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr ""
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr ""
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr ""
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr ""
1428
 
1500
  "forms."
1501
  msgstr ""
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr ""
languages/mailchimp-for-wp-cs_CZ.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/cs_CZ/)\n"
13
  "MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "Nastavení"
32
 
@@ -43,80 +43,79 @@ msgid "MailChimp Settings"
43
  msgstr "Nastavení MailChimpu"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "Zaškrtávací políčka"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Formuláře"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Formulář pro přidávání komentářů"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Registrační formulář"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "Formuláře MultiSite"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "Registrace do BuddyPress"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr "(pouze v PRO verzi)"
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr "Seznamy adres z MailChimpu byly úspěšně aktualizovány."
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr "Při aktualizaci seznamu adres z MailChimpu se vyskytla chyba - zkuste to prosím později."
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr "Políčko pro EMAIL. Příklad: <code>%s</code>"
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr "Odesílací tlačítko. Příklad: <code>%s</code>"
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr "Registrovat"
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr "Políčko '%s'"
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr "Chyba v aplikaci MailChimp: "
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr "Vyberte prosím alespoň jeden seznam, do kterého se budou uživatelé registrovat."
122
 
@@ -145,53 +144,54 @@ msgid ""
145
  msgstr "Přihlašovací formulář můžete upravit v %sMailChimp for WordPress form settings%s."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr "E-mailová adresa:"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr "Vaše e-mailová adresa:"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr "Registrovat se"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Přihlásit se k odběru novinek!"
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Děkujeme, registrace byla úspěšná. Zkontrolujte si prosím svou e-mailovou schránku."
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Něco se pokazilo. Vyzkoušejte to prosím znovu."
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr "Vyplňte prosím validní tvar e-mailu."
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Zadaná adresa je již na našem seznamu odběratelů. Děkujeme!"
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Vyplňte prosím kód CAPTCHA."
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr "Vyplňte prosím všechna povinná políčka."
197
 
@@ -259,39 +259,40 @@ msgstr "Ano"
259
  msgid "No"
260
  msgstr "Ne"
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "Chyba pluginu MailChimp pro WordPress"
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Vyberte prosím seznam odběratelů v sekci <a href=\"%s\">Nastavení zaškrtávacích políček</a>"
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Tato ladící hláška je zobrazena pouze administrátorům."
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "Při odeslání požadavku na přihlášení vrátil MailChimp tuto chybovou hlášku:"
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Toto jsou data, která byla odeslána do MailChimpu:"
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr "E-mailová adresa:"
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
@@ -455,8 +456,29 @@ msgstr "Chcete načíst výchozí CSS styly?"
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Pokud se vám zaškrtávací políčko nezobrazuje dobře, vyberte \"Ano\"."
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr "Nastavení formuláře"
@@ -481,6 +503,12 @@ msgstr "Chcete načíst CSS styly k formuláři?"
481
  msgid "Yes, load basic form styles"
482
  msgstr "Ano, chci načíst výchozí styly"
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -543,7 +571,7 @@ msgid "Form mark-up"
543
  msgstr "HTML kód formuláře"
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr "Ve vašem formuláři chybí tato (povinná) formulářová políčka:"
549
 
@@ -675,74 +703,123 @@ msgstr "Obecná chybová hláška"
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr "HTML tagy %s jsou v zobrazovaných hláškách povoleny."
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr "Proměnné pro registrační formulář"
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr "Pro přidávání dynamického obsahu do vašeho formuláře používejte následující proměnné."
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
689
  msgid "Replaced with the form response (error or success messages)."
690
  msgstr "Bude nahrazeno potvrzovací, chybovou či jinou hláškou."
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
  msgid "Replaced with a captcha field."
695
  msgstr "Bude nahrazeno kódem CAPTCHA."
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
  msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr "Bude nahrazeno počtem odběratelů na vybraném seznamu adres."
701
 
702
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
  msgid "Replaced with the current site language, eg: %s"
705
  msgstr "Bude nahrazeno aktuálně nastaveným jazykem stránky, např. %s."
706
 
707
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
  msgid "Replaced with the visitor's IP address"
710
  msgstr "Bude nahrazeno IP adresou uživatele."
711
 
712
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr "Bude nahrazeno aktuálním datem (yyyy/mm/dd, např. %s)."
716
 
717
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr "Bude nahrazeno aktuálním časem (hh:mm:ss, např. %s)."
721
 
722
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
  msgid ""
725
  "Replaced with the logged in user's email (or nothing, if there is no logged "
726
  "in user)"
727
  msgstr "Bude nahrazeno e-mailem právě přihlášeného uživatele. Pokud nebude uživatel přihlášený, zůstane hodnota prázdná."
728
 
729
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
  msgid "First name of the current user"
732
  msgstr "Křestní jméno právě přihlášeného uživatele."
733
 
734
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
  msgid "Last name of the current user"
737
  msgstr "Příjmení právě přihlášeného uživatele."
738
 
739
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
  msgid "Current user ID"
742
  msgstr "ID aktuálně přihlášeného uživatele."
743
 
744
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
746
  msgid "Current URL"
747
  msgstr "URL stránky, na které se nacházíte."
748
 
@@ -830,11 +907,20 @@ msgstr "Nejprve vyberte alespoň jeden seznam odběratelů."
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
 
 
 
 
 
 
 
 
833
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
  "now</a> for an even better plugin, you will love it."
835
  msgstr "Jste spokojeni s tímto pluginem? Pokud chcete ještě více možností, <a href=\"%s\">aktivujte si verzi Pro</a>. Bude se vám líbit."
836
 
837
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
838
  msgid ""
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
  msgstr "Tento plugin není vyvíjen ve spolupráci s MailChimpem."
@@ -860,27 +946,35 @@ msgid "Show a token of your appreciation"
860
  msgstr ""
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
863
- msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr ""
865
 
866
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
  msgstr ""
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
  msgstr ""
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
  msgstr ""
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
882
  msgstr ""
883
 
 
 
 
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
@@ -896,69 +990,64 @@ msgstr ""
896
  msgid "More information about MailChimp for WP Pro"
897
  msgstr ""
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr "Dokumentace"
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr "Uložit formulář"
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr "Upravit formulář"
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr "Zpět na obecné nastavení"
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr "Formulář byl upravený."
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr "Formulář byl uložený."
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr "Nepovinná nastavení"
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr ""
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr "MailChimp & licence"
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr "Souhrny"
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr ""
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr ""
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr "Datum konce nemůže být před datumem začátku"
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr ""
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1064,13 @@ msgstr ""
975
  msgid "%sShow generated CSS%s"
976
  msgstr "%sZobrazit vygenerované CSS%s"
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr "Pokud chcete použít tyto styly na vaší stránce, vyberte v %sNastavení formuláře\" volbu \"Chci načíst mé upravené styly\"."
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr "%CSS soubor\" byl vytvořen."
987
 
@@ -1019,29 +1108,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr ""
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
- msgstr "Vaše licence vypršela. Pokud chcete nadále používat rozšířené funkce MailChimpu pro WordPress, <a href=\"%s\">prodlužte si licenci</a>"
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr "Při aktivaci vaší licence se vyskytla chyba. Vypadá to, že je licenční klíč neplatný."
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr "Vaše %s licence byla deaktivována."
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr "Aktivace vaší %s licence se nepodařila."
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr "Chyba požadavku: \"%s\""
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr "%s: Nastavení licence"
1047
 
@@ -1076,51 +1173,56 @@ msgid "you are receiving updates"
1076
  msgstr "aktualizace pluginu budou stahovány"
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
- msgstr "NEAKTIVNÍ"
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
  msgstr "aktualizace pluginu <strong>nebudou</strong> stahovány"
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr "Přepnout status licence"
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr "Deaktivovat licenci"
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr "(pokud deaktivujete licenci na této stránce, budete ji moci použít na jiné WordPress stránce)"
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr "Aktivovat licenci"
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr "Vložte prosím nejdříve licenční klíč."
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr "Licenční klíč:"
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr "Licenční klíč, který jsme vám poslali e-mailem, vložte sem."
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr ""
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr "Vaše %s licence vyprší %s."
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr "%sObnovit licenci%s."
1126
 
@@ -1134,25 +1236,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr "<strong>Chyba:</strong> Formulář pro odběr nebyl nalezen. Použijte prosím správné ID formuláře."
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr "Nový formulář pro odběr uživatelů"
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr ""
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr "Upozorňujeme, že jste aktivovali potvrzování e-mailu při odběru. Uživatel nebude přidán na vybraný seznam odběratelů dokud nepotvrdí existenci jejich e-mailové adresy."
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr ""
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr "MailChimp pro WP Form"
@@ -1179,7 +1298,7 @@ msgstr ""
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr "Nemáte žádné formuláře pro registraci odběratelů. <a href=\"%s\">Vytvořit formulář</a>"
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1309,8 @@ msgid "ID"
1190
  msgstr "ID"
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr "Formulář"
1197
 
@@ -1237,10 +1356,6 @@ msgstr ""
1237
  msgid "Email"
1238
  msgstr "E-mail"
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr "Seznam"
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr "Typ"
@@ -1250,8 +1365,8 @@ msgid "Source"
1250
  msgstr "Zdroj"
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
- msgstr "Extra data"
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1257
  msgid "Subscribed"
@@ -1262,7 +1377,7 @@ msgid "Log items deleted."
1262
  msgstr ""
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr "Komentář"
1268
 
@@ -1270,44 +1385,44 @@ msgstr "Komentář"
1270
  msgid "deleted"
1271
  msgstr ""
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr "Registrace"
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr "MultiSite registrace"
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr "Pokladna"
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr "Contact Form 7"
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr "bbPress: Nové téma"
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr "bbPress: Nová odpověď"
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr "Jiný formulář"
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr ""
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr "Všechny"
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr "Zaškrtávací políčko"
1313
 
@@ -1385,23 +1500,6 @@ msgid ""
1385
  "forms."
1386
  msgstr ""
1387
 
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr "Umístění zaškrtávacího políčka ve WooCommerce"
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr "Za detaily o platbě"
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr "Za doplňkovými informacemi"
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr ""
1404
-
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
1407
  msgstr "Úprava popisků u zaškrtávacího políčka"
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/cs_CZ/)\n"
13
  "MIME-Version: 1.0\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "Nastavení"
32
 
43
  msgstr "Nastavení MailChimpu"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "Zaškrtávací políčka"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Formuláře"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr ""
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Formulář pro přidávání komentářů"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Registrační formulář"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "Formuláře MultiSite"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "Registrace do BuddyPress"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr ""
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr "Seznamy adres z MailChimpu byly úspěšně aktualizovány."
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr "Při aktualizaci seznamu adres z MailChimpu se vyskytla chyba - zkuste to prosím později."
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
  msgstr "Políčko pro EMAIL. Příklad: <code>%s</code>"
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
  msgstr "Odesílací tlačítko. Příklad: <code>%s</code>"
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
  msgstr "Registrovat"
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
  msgstr "Políčko '%s'"
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr "Vyberte prosím alespoň jeden seznam, do kterého se budou uživatelé registrovat."
121
 
144
  msgstr "Přihlašovací formulář můžete upravit v %sMailChimp for WordPress form settings%s."
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr "E-mailová adresa:"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr "Vaše e-mailová adresa:"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr "Registrovat se"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Přihlásit se k odběru novinek!"
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Děkujeme, registrace byla úspěšná. Zkontrolujte si prosím svou e-mailovou schránku."
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Něco se pokazilo. Vyzkoušejte to prosím znovu."
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr "Vyplňte prosím validní tvar e-mailu."
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Zadaná adresa je již na našem seznamu odběratelů. Děkujeme!"
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Vyplňte prosím kód CAPTCHA."
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
  msgstr "Vyplňte prosím všechna povinná políčka."
197
 
259
  msgid "No"
260
  msgstr "Ne"
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "Chyba pluginu MailChimp pro WordPress"
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Vyberte prosím seznam odběratelů v sekci <a href=\"%s\">Nastavení zaškrtávacích políček</a>"
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Tato ladící hláška je zobrazena pouze administrátorům."
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "Při odeslání požadavku na přihlášení vrátil MailChimp tuto chybovou hlášku:"
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Toto jsou data, která byla odeslána do MailChimpu:"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
  msgstr "E-mailová adresa:"
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
  msgstr ""
298
 
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Pokud se vám zaškrtávací políčko nezobrazuje dobře, vyberte \"Ano\"."
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr "Umístění zaškrtávacího políčka ve WooCommerce"
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr "Za detaily o platbě"
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr "Za doplňkovými informacemi"
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr ""
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
  msgstr "Nastavení formuláře"
503
  msgid "Yes, load basic form styles"
504
  msgstr "Ano, chci načíst výchozí styly"
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "(pouze v PRO verzi)"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr "HTML kód formuláře"
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr "Ve vašem formuláři chybí tato (povinná) formulářová políčka:"
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr "HTML tagy %s jsou v zobrazovaných hláškách povoleny."
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr ""
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr ""
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr ""
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr ""
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr ""
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr ""
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr "Proměnné pro registrační formulář"
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr "Pro přidávání dynamického obsahu do vašeho formuláře používejte následující proměnné."
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
+ msgstr ""
763
+
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
  msgid "Replaced with the form response (error or success messages)."
767
  msgstr "Bude nahrazeno potvrzovací, chybovou či jinou hláškou."
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
  msgid "Replaced with a captcha field."
772
  msgstr "Bude nahrazeno kódem CAPTCHA."
773
 
774
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
  msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr "Bude nahrazeno počtem odběratelů na vybraném seznamu adres."
778
 
779
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
  msgid "Replaced with the current site language, eg: %s"
782
  msgstr "Bude nahrazeno aktuálně nastaveným jazykem stránky, např. %s."
783
 
784
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
  msgid "Replaced with the visitor's IP address"
787
  msgstr "Bude nahrazeno IP adresou uživatele."
788
 
789
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr "Bude nahrazeno aktuálním datem (yyyy/mm/dd, např. %s)."
793
 
794
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
797
  msgstr "Bude nahrazeno aktuálním časem (hh:mm:ss, např. %s)."
798
 
799
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
  msgid ""
802
  "Replaced with the logged in user's email (or nothing, if there is no logged "
803
  "in user)"
804
  msgstr "Bude nahrazeno e-mailem právě přihlášeného uživatele. Pokud nebude uživatel přihlášený, zůstane hodnota prázdná."
805
 
806
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
  msgid "First name of the current user"
809
  msgstr "Křestní jméno právě přihlášeného uživatele."
810
 
811
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
  msgid "Last name of the current user"
814
  msgstr "Příjmení právě přihlášeného uživatele."
815
 
816
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
  msgid "Current user ID"
819
  msgstr "ID aktuálně přihlášeného uživatele."
820
 
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr "URL stránky, na které se nacházíte."
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr ""
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr "Jste spokojeni s tímto pluginem? Pokud chcete ještě více možností, <a href=\"%s\">aktivujte si verzi Pro</a>. Bude se vám líbit."
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr "Tento plugin není vyvíjen ve spolupráci s MailChimpem."
946
  msgstr ""
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
  msgstr ""
951
 
952
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
+ msgid "Leave a %s plugin review on WordPress.org"
954
+ msgstr ""
955
+
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr ""
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr ""
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
  msgstr ""
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr ""
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr ""
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr ""
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr "Dokumentace"
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr "Uložit formulář"
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr "Upravit formulář"
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr "Zpět na obecné nastavení"
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr "Formulář byl upravený."
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr "Formulář byl uložený."
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr "Nepovinná nastavení"
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr ""
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr "MailChimp & licence"
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr "Souhrny"
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr ""
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr "Datum konce nemůže být před datumem začátku"
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr ""
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr "%sZobrazit vygenerované CSS%s"
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr "Pokud chcete použít tyto styly na vaší stránce, vyberte v %sNastavení formuláře\" volbu \"Chci načíst mé upravené styly\"."
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr "%CSS soubor\" byl vytvořen."
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr ""
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
+ msgstr ""
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr "Při aktivaci vaší licence se vyskytla chyba. Vypadá to, že je licenční klíč neplatný."
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr "Vaše %s licence byla deaktivována."
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr ""
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr "Aktivace vaší %s licence se nepodařila."
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr "Chyba požadavku: \"%s\""
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr "%s: Nastavení licence"
1144
 
1173
  msgstr "aktualizace pluginu budou stahovány"
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
+ msgstr ""
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr "aktualizace pluginu <strong>nebudou</strong> stahovány"
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr "NEAKTIVNÍ"
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr "Přepnout status licence"
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr "Deaktivovat licenci"
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr "(pokud deaktivujete licenci na této stránce, budete ji moci použít na jiné WordPress stránce)"
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr "Aktivovat licenci"
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr "Vložte prosím nejdříve licenční klíč."
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr "Licenční klíč:"
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr "Licenční klíč, který jsme vám poslali e-mailem, vložte sem."
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr ""
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr "Vaše %s licence vyprší %s."
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr "%sObnovit licenci%s."
1228
 
1236
  " correct form ID."
1237
  msgstr "<strong>Chyba:</strong> Formulář pro odběr nebyl nalezen. Použijte prosím správné ID formuláře."
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr ""
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr "Nový formulář pro odběr uživatelů"
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr ""
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr "Seznam"
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr ""
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr "Upozorňujeme, že jste aktivovali potvrzování e-mailu při odběru. Uživatel nebude přidán na vybraný seznam odběratelů dokud nepotvrdí existenci jejich e-mailové adresy."
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr ""
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr ""
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr "MailChimp pro WP Form"
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr "Nemáte žádné formuláře pro registraci odběratelů. <a href=\"%s\">Vytvořit formulář</a>"
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr "ID"
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr "Formulář"
1316
 
1356
  msgid "Email"
1357
  msgstr "E-mail"
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr "Typ"
1365
  msgstr "Zdroj"
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
+ msgstr ""
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1372
  msgid "Subscribed"
1377
  msgstr ""
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr "Komentář"
1383
 
1385
  msgid "deleted"
1386
  msgstr ""
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr "Registrace"
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr "MultiSite registrace"
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr "Pokladna"
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr "Contact Form 7"
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr "bbPress: Nové téma"
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr "bbPress: Nová odpověď"
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr "Jiný formulář"
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr ""
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr "Všechny"
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr "Zaškrtávací políčko"
1428
 
1500
  "forms."
1501
  msgstr ""
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr "Úprava popisků u zaškrtávacího políčka"
languages/mailchimp-for-wp-da_DK.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/da_DK/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/da_DK/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-de_DE.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr "Einstellungen"
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr "MailChimp Einstellungen"
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr "Checkboxen"
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
51
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
52
  msgid "Forms"
53
  msgstr "Formulare"
54
 
55
- #: mailchimp-for-wordpress/includes/class-admin.php:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr "Kommentar Formular"
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr "Registrierungs Formular"
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr "MultiSite Formular"
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr "BuddyPress Formular"
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
- msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr "MailChimp Cache erneuern."
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr "Konnte den MailChimp Cache nicht erneuern - Bitte später noch mal probieren."
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr "E-Mail Adresse"
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr "Deine E-Mail Adresse"
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr "Registrieren"
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr "Trage mich in den Newsletter ein!"
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr "Oops. Irgendwas ist schief gelaufen. Bitte versuche es später noch mal."
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr "Bitte eine gültige E-Mail Adresse angeben."
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr "Die angegebene E-Mail Adresse befindet sicher bereits im Verteile, Danke!"
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr "Bitte das CAPTCHA eingeben."
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr "Ja"
258
  msgid "No"
259
  msgstr "Nein"
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr "Allgemeines CSS laden?"
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr "Wähle \"ja\", falls die Checkbox an einem ungewünschten Platz angezeigt wird."
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr "Lade Formular Stile (CSS)?"
480
  msgid "Yes, load basic form styles"
481
  msgstr "Ja, lade Standard Formular Stile"
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr "HTML Tags wie %s sind in den Nachrichten Feldern erlaubt."
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr "Benutze die folgenden Variablen um zusätzlichen Text zu deinem Formular hinzuzufügen."
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
688
  msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
  msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
  msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr "Ersetzten mit der Nummer von Abonnenten der gewählten Listen"
700
 
701
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
  msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
  msgid "Replaced with the visitor's IP address"
709
  msgstr "Ersetzten mit der Besucher IP Adresse"
710
 
711
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr "Ersetzten mit dem aktuellen Datum (yyyy/mm/dd eg: %s)"
715
 
716
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr "Ersetzten mit der aktuellen Uhrzeit (hh:mm:ss eg: %s)"
720
 
721
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
  msgid ""
724
  "Replaced with the logged in user's email (or nothing, if there is no logged "
725
  "in user)"
726
  msgstr "Ersetzten mit der E-Mail des eingeloggten Benutzers (oder nicht, wenn der User nicht eingeloggt ist)"
727
 
728
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
  msgid "First name of the current user"
731
  msgstr "Den Vornamen des aktuellen Benutzers anzeigen"
732
 
733
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
  msgid "Last name of the current user"
736
  msgstr "Den Nachnamen des aktuellen Benutzers anzeigen"
737
 
738
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
  msgid "Current user ID"
741
  msgstr "Aktuelle Benutzer ID"
742
 
743
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
745
  msgid "Current URL"
746
  msgstr "Aktuelle URL"
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr "Dokumentation"
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr "Formular Speichern"
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr "Formular Aktualisieren"
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr "Zu den Standard Formular Einstellungen"
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr "Formular aktualisiert."
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr "Formular gespeichert."
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr "Berichte"
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr "%s Checkout"
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr "Bitte stelle sicher, dass das Plugin mit MailChimp verbunden ist. <a href=\"%s\">Gültigen API Schlüssel eingeben.</a>"
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr "Konnte das Stylesheet nicht erzeugen. Füge das erstellte CSS zu deinem
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr "Um die Formatierungen anzuwenden, wähle \"Lade benutzerdefinierte Formular Stile\" in den %sFormular Einstellungen%s"
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr "Das %sCSS Stylesheet%s wurde erstellt."
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
- msgstr "Deine Lizenz ist abgelaufen. Du musst <a href=\"%s\">deine Lizenz verlängern</a> um sie auf dieser Seite zu nutzen."
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr "Die Lizenz konnte nicht aktiviert werden, die Lizenz scheint ungültig zu sein."
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr "Dein %s wurde deaktiviert."
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr "Die %s Lizenz konnte nicht deaktiviert werden."
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr "Fehler: \"%s\""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr "%s: Lizenz Einstellungen"
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr "Lizenz Status umschalten"
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr "(deaktiviere deine Lizenz um sie auf einer anderen Wordpress Seite zu nutzen)"
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr "Bitte trage vorher einen Lizenz Schlüssel in das Feld darunter ein."
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr "Lizenz Schlüssel"
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr "Du hast deinen Lizenz Schlüssen mittels der %s PHP Konstante angegeben."
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr "Deine %s Lizenz wird am %s verfallen."
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr "%sErneuere deine Lizenz jetzt%s."
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr "<strong>Fehler:</strong> Registrierungsformular nicht gefunden . Bitte überprüfe ob die richtige Formular ID verwendet wurde."
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr "Neue Registrierung"
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr "<strong>%s</strong> hat sich um %s auf %s registriert und hat dafür das Formular \"%s\" genutzt."
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr "Diese E-Mail wurde automatisch vom MailChimp for WordPress Plugin versendet."
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr "MailChimp for WP Formular"
@@ -1178,7 +1297,7 @@ msgstr "Wähle ein Formular aus"
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr "Du hast keine Registrierungsformulare. <a href=\"%s\">Erstelle jetzt eines.</a>"
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr "Formulare"
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr "E-Mail"
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr "Liste"
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr "Art"
@@ -1249,8 +1364,8 @@ msgid "Source"
1249
  msgstr "Quelle"
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
- msgstr "Zusätzliche Daten"
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1256
  msgid "Subscribed"
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr "Keine Anmelde Anfragen gefunden."
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr "Benutzerdefinierte Beschriftungs Texte"
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr "Einstellungen"
31
 
42
  msgstr "MailChimp Einstellungen"
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr "Checkboxen"
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
51
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
52
  msgid "Forms"
53
  msgstr "Formulare"
54
 
55
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr "Kommentar Formular"
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr "Registrierungs Formular"
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr "MultiSite Formular"
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr "BuddyPress Formular"
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
85
+ msgstr "%s Checkout"
 
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr "MailChimp Cache erneuern."
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
94
  msgid "Failed to renew MailChimp cache - please try again later."
95
  msgstr "Konnte den MailChimp Cache nicht erneuern - Bitte später noch mal probieren."
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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 "E-Mail Adresse"
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr "Deine E-Mail Adresse"
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr "Registrieren"
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr "Trage mich in den Newsletter ein!"
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr "Oops. Irgendwas ist schief gelaufen. Bitte versuche es später noch mal."
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr "Bitte eine gültige E-Mail Adresse angeben."
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr "Die angegebene E-Mail Adresse befindet sicher bereits im Verteile, Danke!"
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr "Bitte das CAPTCHA eingeben."
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr "Nein"
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Wähle \"ja\", falls die Checkbox an einem ungewünschten Platz angezeigt wird."
457
 
458
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
459
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
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:111
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:112
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:115
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 ""
502
  msgid "Yes, load basic form styles"
503
  msgstr "Ja, lade Standard Formular Stile"
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr "HTML Tags wie %s sind in den Nachrichten Feldern erlaubt."
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr "Benutze die folgenden Variablen um zusätzlichen Text zu deinem Formular hinzuzufügen."
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
  msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
  msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
775
  msgid "Replaced with the number of subscribers on the selected list(s)"
776
  msgstr "Ersetzten mit der Nummer von Abonnenten der gewählten Listen"
777
 
778
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
779
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
  msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
  msgid "Replaced with the visitor's IP address"
786
  msgstr "Ersetzten mit der Besucher IP Adresse"
787
 
788
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr "Ersetzten mit dem aktuellen Datum (yyyy/mm/dd eg: %s)"
792
 
793
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
796
  msgstr "Ersetzten mit der aktuellen Uhrzeit (hh:mm:ss eg: %s)"
797
 
798
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
800
  msgid ""
801
  "Replaced with the logged in user's email (or nothing, if there is no logged "
802
  "in user)"
803
  msgstr "Ersetzten mit der E-Mail des eingeloggten Benutzers (oder nicht, wenn der User nicht eingeloggt ist)"
804
 
805
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
806
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
  msgid "First name of the current user"
808
  msgstr "Den Vornamen des aktuellen Benutzers anzeigen"
809
 
810
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
  msgid "Last name of the current user"
813
  msgstr "Den Nachnamen des aktuellen Benutzers anzeigen"
814
 
815
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
  msgid "Current user ID"
818
  msgstr "Aktuelle Benutzer ID"
819
 
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr "Aktuelle URL"
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr "Dokumentation"
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr "Formular Speichern"
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr "Formular Aktualisieren"
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr "Zu den Standard Formular Einstellungen"
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr "Formular aktualisiert."
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr "Formular gespeichert."
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1029
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1030
  msgid "Reports"
1031
  msgstr "Berichte"
1032
 
1033
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1034
  msgid ""
1035
  "Please make sure the plugin is connected to MailChimp. <a "
1036
  "href=\"%s\">Provide a valid API key.</a>"
1037
  msgstr "Bitte stelle sicher, dass das Plugin mit MailChimp verbunden ist. <a href=\"%s\">Gültigen API Schlüssel eingeben.</a>"
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr "Um die Formatierungen anzuwenden, wähle \"Lade benutzerdefinierte Formular Stile\" in den %sFormular Einstellungen%s"
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr "Das %sCSS Stylesheet%s wurde erstellt."
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr "Die Lizenz konnte nicht aktiviert werden, die Lizenz scheint ungültig zu sein."
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr "Dein %s wurde deaktiviert."
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr "Die %s Lizenz konnte nicht deaktiviert werden."
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr "Fehler: \"%s\""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr "%s: Lizenz Einstellungen"
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr "Lizenz Status umschalten"
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr "(deaktiviere deine Lizenz um sie auf einer anderen Wordpress Seite zu nutzen)"
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr "Bitte trage vorher einen Lizenz Schlüssel in das Feld darunter ein."
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr "Lizenz Schlüssel"
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1217
  msgid "You defined your license key using the %s PHP constant."
1218
  msgstr "Du hast deinen Lizenz Schlüssen mittels der %s PHP Konstante angegeben."
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 "Deine %s Lizenz wird am %s verfallen."
1223
 
1224
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr "%sErneuere deine Lizenz jetzt%s."
1227
 
1235
  " correct form ID."
1236
  msgstr "<strong>Fehler:</strong> Registrierungsformular nicht gefunden . Bitte überprüfe ob die richtige Formular ID verwendet wurde."
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 "Neue Registrierung"
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 "<strong>%s</strong> hat sich um %s auf %s registriert und hat dafür das Formular \"%s\" genutzt."
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 "Liste"
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 "Diese E-Mail wurde automatisch vom MailChimp for WordPress Plugin versendet."
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 "MailChimp for WP Formular"
1297
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1298
  msgstr "Du hast keine Registrierungsformulare. <a href=\"%s\">Erstelle jetzt eines.</a>"
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr "Formulare"
1315
 
1355
  msgid "Email"
1356
  msgstr "E-Mail"
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr "Art"
1364
  msgstr "Quelle"
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
+ msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1371
  msgid "Subscribed"
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr "Keine Anmelde Anfragen gefunden."
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr "Benutzerdefinierte Beschriftungs Texte"
languages/mailchimp-for-wp-el_GR.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/el_GR/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/el_GR/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-es_ES.po CHANGED
@@ -1,13 +1,14 @@
1
  # Copyright (C) 2014 Danny van Kooten
2
  # This file is distributed under the GPL v3.
3
  # Translators:
 
4
  # Tane <yosoytane@gmail.com>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/es_ES/)\n"
13
  "MIME-Version: 1.0\n"
@@ -26,14 +27,14 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "Configuración"
32
 
33
  #: mailchimp-for-wordpress/includes/class-admin.php:149
34
  #: mailchimp-for-wordpress/includes/class-admin.php:163
35
  msgid "Upgrade to Pro"
36
- msgstr ""
37
 
38
  #: mailchimp-for-wordpress/includes/class-admin.php:160
39
  #: mailchimp-for-wordpress/includes/views/api-settings.php:12
@@ -43,90 +44,89 @@ msgid "MailChimp Settings"
43
  msgstr "Configuración de MailChimp"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "Casillas de verificación"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Formularios"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Formulario de comentarios"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Formulario de registros"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "Formularios MultiSite"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "Regitro BuddyPress"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr ""
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr "Renovar cache de MailChimp"
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr "Fallo al renovar la cache de MailChimp - Por favor, intentelo de nuevo más tarde."
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr "Un campo EMAIL. Por ejemplo: <code>%s</code>"
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr "Un botón para enviar. Por ejemplo: <code>%s</code>"
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr "Regístrate"
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr "Un campo '%s'"
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr ""
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
- msgstr ""
122
 
123
  #: mailchimp-for-wordpress/includes/class-widget.php:20
124
  msgid "MailChimp Sign-Up Form"
125
- msgstr ""
126
 
127
  #: mailchimp-for-wordpress/includes/class-widget.php:21
128
  msgid "Displays your MailChimp for WordPress sign-up form"
129
- msgstr ""
130
 
131
  #: mailchimp-for-wordpress/includes/class-widget.php:62
132
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:69
@@ -142,56 +142,57 @@ msgstr "Título:"
142
  msgid ""
143
  "You can edit your sign-up form in the %sMailChimp for WordPress form "
144
  "settings%s."
145
- msgstr ""
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr "Dirección de correo electrónico"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr "Tu dirección de correo electrónico"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr "Registro"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "¡Suscríbeme a la lista de suscriptores!"
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
- msgstr ""
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Ups. Algo salió mal. Por favor, intentalo otra vez más tarde. "
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr "Por favor, introduce una cuenta de correo valida"
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "La dirección de correo electrónico facilitada ya está suscrita, ¡gracias!"
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Por favor, introduce el código de seguridad"
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr "Por favor rellena los campos solicitados."
197
 
@@ -259,39 +260,40 @@ msgstr "Si"
259
  msgid "No"
260
  msgstr "No"
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
- msgstr ""
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
- msgstr ""
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
- msgstr ""
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
- msgstr ""
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
- msgstr ""
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr "Dirección de Email:"
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr "Unificar variables:"
297
 
@@ -351,7 +353,7 @@ msgstr "Renovar las listas de MailChimp"
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
@@ -455,8 +457,29 @@ msgstr "¿Cargamos algunos CSS por defecto?"
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Seleccione \"sí \" si la casilla de verificación aparece en un lugar inapropiado"
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr "Propiedades del formulario"
@@ -465,7 +488,7 @@ msgstr "Propiedades del formulario"
465
  msgid ""
466
  "To use the MailChimp sign-up form, configure the form below and then either "
467
  "paste %s in the content of a post or page or use the widget."
468
- msgstr ""
469
 
470
  #: mailchimp-for-wordpress/includes/views/form-settings.php:20
471
  msgid "Required form settings"
@@ -481,6 +504,12 @@ msgstr "¿Cargamos los estilos CSS por defecto?"
481
  msgid "Yes, load basic form styles"
482
  msgstr "Si, carga los estilos de formulario básicos"
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -525,7 +554,7 @@ msgstr "Color de tema personalizado"
525
  msgid ""
526
  "If you want to load some default CSS styles, select \"basic formatting "
527
  "styles\" or choose one of the color themes"
528
- msgstr ""
529
 
530
  #: mailchimp-for-wordpress/includes/views/form-settings.php:45
531
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
@@ -536,14 +565,14 @@ msgstr "Los formularios de esta lista suscriben a"
536
  msgid ""
537
  "Select the list(s) to which people who submit this form should be "
538
  "subscribed."
539
- msgstr ""
540
 
541
  #: mailchimp-for-wordpress/includes/views/form-settings.php:69
542
  msgid "Form mark-up"
543
- msgstr ""
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr "Tu formulario necesita los siguientes campos (requeridos):"
549
 
@@ -601,7 +630,7 @@ msgstr "Selecciona \"sí \" si deseas reemplazar los grupos de interés con los
601
 
602
  #: mailchimp-for-wordpress/includes/views/form-settings.php:158
603
  msgid "Form Settings & Messages"
604
- msgstr ""
605
 
606
  #: mailchimp-for-wordpress/includes/views/form-settings.php:162
607
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
@@ -635,7 +664,7 @@ msgstr "Redireccionar a una URL tras suscribirse satisfactoriamente."
635
 
636
  #: mailchimp-for-wordpress/includes/views/form-settings.php:192
637
  msgid "Example: %s"
638
- msgstr ""
639
 
640
  #: mailchimp-for-wordpress/includes/views/form-settings.php:193
641
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
@@ -647,19 +676,19 @@ msgstr "Dejar en blanco o introduzca 0 para ninguna redirección. Use URLs compl
647
 
648
  #: mailchimp-for-wordpress/includes/views/form-settings.php:197
649
  msgid "Success message"
650
- msgstr "Mensaje exitoso"
651
 
652
  #: mailchimp-for-wordpress/includes/views/form-settings.php:201
653
  msgid "Invalid email address message"
654
- msgstr ""
655
 
656
  #: mailchimp-for-wordpress/includes/views/form-settings.php:205
657
  msgid "Required field missing message"
658
- msgstr ""
659
 
660
  #: mailchimp-for-wordpress/includes/views/form-settings.php:209
661
  msgid "Already subscribed message"
662
- msgstr ""
663
 
664
  #: mailchimp-for-wordpress/includes/views/form-settings.php:214
665
  msgid "Invalid CAPTCHA message"
@@ -667,7 +696,7 @@ msgstr "Mensaje de CAPTCHA invalido"
667
 
668
  #: mailchimp-for-wordpress/includes/views/form-settings.php:219
669
  msgid "General error message"
670
- msgstr ""
671
 
672
  #: mailchimp-for-wordpress/includes/views/form-settings.php:225
673
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:181
@@ -675,74 +704,123 @@ msgstr ""
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr "Las etiquetas HTML como %s están permitidas en los campos del mensaje."
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr "Variables del formulario"
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr "Utiliza las siguientes variables para añadir algo de contenido dinámico a tu formulario"
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
689
  msgid "Replaced with the form response (error or success messages)."
690
  msgstr "Sustituya la respuesta del formulario (mensajes de error ó éxito)."
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
  msgid "Replaced with a captcha field."
695
  msgstr "Reemplace con un campo captcha."
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
  msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr "Se sustituye con el número de suscriptores de la lista seleccionada (s)"
701
 
702
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
  msgid "Replaced with the current site language, eg: %s"
705
  msgstr "Reemplace por el idioma actual del sitio, por ejemplo: %s"
706
 
707
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
  msgid "Replaced with the visitor's IP address"
710
  msgstr "Se sustituye por la dirección IP del visitante"
711
 
712
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr "Se sustituye con la fecha actual (aaaa/mm/dd ejemplo: %s)"
716
 
717
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr "Se susitutiye con la hora actual (hh:mm:ss por ejemplo: %s)"
721
 
722
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
  msgid ""
725
  "Replaced with the logged in user's email (or nothing, if there is no logged "
726
  "in user)"
727
  msgstr "Se sustituye con la cuenta de correo del usuario que ha iniciado sesión (o ninguna, si no hay un usuario que ha iniciado sesión)"
728
 
729
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
  msgid "First name of the current user"
732
  msgstr "Apellido del usuario actual"
733
 
734
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
  msgid "Last name of the current user"
737
  msgstr "Segundo apellido del usuario actual"
738
 
739
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
  msgid "Current user ID"
742
  msgstr "ID de usuario actual"
743
 
744
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
746
  msgid "Current URL"
747
  msgstr "URL actual"
748
 
@@ -753,7 +831,7 @@ msgstr "Añadir un nuevo campo"
753
 
754
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
755
  msgid "Use the tool below to generate the HTML for your form fields."
756
- msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
759
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:32
@@ -826,139 +904,151 @@ msgstr "Generado HTML"
826
 
827
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:68
828
  msgid "Select at least one list first."
829
- msgstr ""
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
833
- "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
- "now</a> for an even better plugin, you will love it."
 
 
835
  msgstr ""
836
 
837
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
838
  msgid ""
 
 
 
 
 
 
 
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
- msgstr ""
841
 
842
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
843
  msgid "Looking for support?"
844
- msgstr ""
845
 
846
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
847
  msgid ""
848
  "Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
849
  "use the <a href=\"%s\">support forums</a> on WordPress.org."
850
- msgstr ""
851
 
852
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
853
  msgid ""
854
  "If you need priority support, please <a href=\"%s\">upgrade to the premium "
855
  "version</a>."
856
- msgstr ""
857
 
858
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
859
  msgid "Show a token of your appreciation"
860
- msgstr ""
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
863
- msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr ""
865
 
866
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
- msgstr ""
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
- msgstr ""
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
  msgstr ""
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
 
 
 
 
882
  msgstr ""
883
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
887
- msgstr ""
888
 
889
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
890
  msgid ""
891
  "Pro features include better and multiple forms, advanced and easy form "
892
  "styling, more default themes, detailed statistics and priority support."
893
- msgstr ""
894
 
895
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
896
  msgid "More information about MailChimp for WP Pro"
897
- msgstr ""
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr "Documentacion"
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr "Guardar formulario"
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr "Actualizar formulario"
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr "Volver a las opciones de configuracion generales"
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr "Formulario actualizado."
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr "Formulario guardado."
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr "Propiedades Opcionales"
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr "Variables del formulario"
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr "MailChimp & Licencia"
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr "Informes"
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr "verificación de %s"
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr "Por favor, asegúrrate de que el plugin está conectado a MailChimp. <a href=\"%s\"> Proporciona una clave de API válida. </a>"
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr "La fecha final no puede ser anterior a la fecha de inicio"
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr "Has desabilitado la entrada utilizando el filtro %s. Re-habilítalo para usar la página de Informes."
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1065,13 @@ msgstr "No se pudo crear la hoja de estilo. Agrega manualmente el CSS generado a
975
  msgid "%sShow generated CSS%s"
976
  msgstr "%sMuestra el CSS generado%s"
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr "Para aplicar estos estilos en tu sitio web, selecciona \"cargar estilos de formulario personalizado\" en los %sajustes de formulario%s"
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr "La %shoja de estilos CSS%s ha sido creada."
987
 
@@ -1019,29 +1109,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr "Has alcanzado el límite de tus activaciones. Debes <a href=\"%s\">reestablecer</a> o <a href=\"%s\">actualizar tu licencia</a> para usarlo en este sitio."
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
- msgstr "Su licencia ha expirado. Debes <a href=\"%s\">ampliar la licencia</ a> con el fin de utilizarlo de nuevo."
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr "No se pudo activar la licencia, la clave de licencia parece inválida."
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr "Su licencia de %s se ha desactivado."
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr "No se pudo desactivar su licencia de %s"
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr "Error de solicitud: \"%s\""
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr "%s: Configuración de licencia"
1047
 
@@ -1069,58 +1167,63 @@ msgstr "Estado de la licencia"
1069
 
1070
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
1071
  msgid "ACTIVE"
1072
- msgstr ""
1073
 
1074
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
1075
  msgid "you are receiving updates"
1076
- msgstr ""
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
  msgstr ""
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
- msgstr ""
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr "Estado de la licencia"
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr "Desactiva la licencia"
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr "(desactivar la licencia para que pueda activarla en otro sitio de WordPress)"
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr "Activar la licencia"
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr "Por favor, primero introduce una clave de licencia en campo de abajo"
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr "Llave de licencia"
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr "Pega aquí la clave de tu licencia, que encontrarás en el email recibido."
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr "Ha definido la clave de licencia utilizando el %s PHP constante."
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr "Tu %s licencia expirará el %s."
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr "%sRenovar licencia ahora%s."
1126
 
@@ -1134,25 +1237,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr "<strong> Error: </strong> formulario de registro no encontrado. Por favor, comprueba si has utilizado el ID de formulario correcto."
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr "Nuevo registro"
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr "<strong>%s</strong> fomulario de alta en %s en %s está utilizando el formato \"%s \"."
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr "Date cuenta que has habilitado la doble opción para el formulario \"%s\". El usuario no se añadirá a las listas seleccionadas de MailChimp hasta que ellos confirmen sus direcciones de email. "
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr "Este correo fue auto-enviado por el plugin MailChimp para WordPress"
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr "MailChimp para el Formulario de WP"
@@ -1179,7 +1299,7 @@ msgstr "Seleccione el formulario a mostrar"
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr "No tienes ningún formulario de inscripción. <a href=\"%s\">Crea uno ahora.</ a>"
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1310,8 @@ msgid "ID"
1190
  msgstr "ID"
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr "Formulario"
1197
 
@@ -1227,20 +1347,16 @@ msgstr "No has creado ningún formulario de registro todavía. ¡Es hora de hace
1227
 
1228
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:33
1229
  msgid "Subscriber Log"
1230
- msgstr ""
1231
 
1232
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:34
1233
  msgid "Subscriber Logs"
1234
- msgstr ""
1235
 
1236
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:53
1237
  msgid "Email"
1238
  msgstr "Correo"
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr "Lista"
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr "Tipo"
@@ -1250,8 +1366,8 @@ msgid "Source"
1250
  msgstr "Origen"
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
- msgstr "Datos adicionales"
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1257
  msgid "Subscribed"
@@ -1259,10 +1375,10 @@ msgstr "Suscrito"
1259
 
1260
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:116
1261
  msgid "Log items deleted."
1262
- msgstr ""
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr "Comentario"
1268
 
@@ -1270,44 +1386,44 @@ msgstr "Comentario"
1270
  msgid "deleted"
1271
  msgstr "eliminado"
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr "Registro"
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr "Registro en múltiples sitios"
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr "Salir"
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr "Formulario de contacto 7"
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr "bbPress: Nuevo asunto"
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr "bbPress: Nueva respuesta"
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr "Otro formulario"
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr "Ninguna solicitud de suscripcion encontrada"
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr "Todo"
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr "Casilla de verificación"
1313
 
@@ -1383,24 +1499,7 @@ msgstr "Formulario a emplear"
1383
  msgid ""
1384
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1385
  "forms."
1386
- msgstr ""
1387
-
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr "Posición de los checkbox en WooCommerce"
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr "Detalles tras la factura"
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr "Tras la información extra"
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr "Escoja la posición de los checkbox en tu formulario de salida de WooCommerce."
1404
 
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
@@ -1526,7 +1625,7 @@ msgstr "https://mc4wp.com/"
1526
 
1527
  #. Description of the plugin/theme
1528
  msgid "Adds various sign-up methods to your website."
1529
- msgstr ""
1530
 
1531
  #. Author of the plugin/theme
1532
  msgid "Danny van Kooten"
1
  # Copyright (C) 2014 Danny van Kooten
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
+ # jose Miranda <joseamirandavelez@gmail.com>, 2014
5
  # Tane <yosoytane@gmail.com>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: MailChimp for WordPress\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
10
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
11
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
12
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
27
  "X-Textdomain-Support: yes\n"
28
 
29
  #: mailchimp-for-wordpress/includes/class-admin.php:130
30
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
31
  msgid "Settings"
32
  msgstr "Configuración"
33
 
34
  #: mailchimp-for-wordpress/includes/class-admin.php:149
35
  #: mailchimp-for-wordpress/includes/class-admin.php:163
36
  msgid "Upgrade to Pro"
37
+ msgstr "Actualizar a Pro"
38
 
39
  #: mailchimp-for-wordpress/includes/class-admin.php:160
40
  #: mailchimp-for-wordpress/includes/views/api-settings.php:12
44
  msgstr "Configuración de MailChimp"
45
 
46
  #: mailchimp-for-wordpress/includes/class-admin.php:161
47
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
48
  msgid "Checkboxes"
49
  msgstr "Casillas de verificación"
50
 
51
  #: mailchimp-for-wordpress/includes/class-admin.php:162
52
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
53
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
54
  msgid "Forms"
55
  msgstr "Formularios"
56
 
57
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
58
+ msgid "This option is only available in MailChimp for WordPress Pro."
59
+ msgstr ""
60
+
61
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
62
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
63
  msgid "Comment form"
64
  msgstr "Formulario de comentarios"
65
 
66
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
67
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
68
  msgid "Registration form"
69
  msgstr "Formulario de registros"
70
 
71
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
72
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
73
  msgid "MultiSite forms"
74
  msgstr "Formularios MultiSite"
75
 
76
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
77
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
78
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
79
  msgid "BuddyPress registration"
80
  msgstr "Regitro BuddyPress"
81
 
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
83
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
85
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
86
+ msgid "%s checkout"
87
+ msgstr "verificación de %s"
 
88
 
89
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
90
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
91
  msgid "Renewed MailChimp cache."
92
  msgstr "Renovar cache de MailChimp"
93
 
94
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
95
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
96
  msgid "Failed to renew MailChimp cache - please try again later."
97
  msgstr "Fallo al renovar la cache de MailChimp - Por favor, intentelo de nuevo más tarde."
98
 
99
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
100
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
101
  msgid "An EMAIL field. Example: <code>%s</code>"
102
  msgstr "Un campo EMAIL. Por ejemplo: <code>%s</code>"
103
 
104
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
105
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
106
  msgid "A submit button. Example: <code>%s</code>"
107
  msgstr "Un botón para enviar. Por ejemplo: <code>%s</code>"
108
 
109
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
110
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
111
  msgid "Sign Up"
112
  msgstr "Regístrate"
113
 
114
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
115
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
116
  msgid "A '%s' field"
117
  msgstr "Un campo '%s'"
118
 
119
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
120
  msgid "Please select at least one list to subscribe to."
121
+ msgstr "Por favor seleccione al menos una lista para suscribirse."
122
 
123
  #: mailchimp-for-wordpress/includes/class-widget.php:20
124
  msgid "MailChimp Sign-Up Form"
125
+ msgstr "Forma de suscripción de MailChimp"
126
 
127
  #: mailchimp-for-wordpress/includes/class-widget.php:21
128
  msgid "Displays your MailChimp for WordPress sign-up form"
129
+ msgstr "Muestra su forma de suscripción de MailChimp para WordPress"
130
 
131
  #: mailchimp-for-wordpress/includes/class-widget.php:62
132
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:69
142
  msgid ""
143
  "You can edit your sign-up form in the %sMailChimp for WordPress form "
144
  "settings%s."
145
+ msgstr "Usted puede editar su forma de suscripción en la %sConfiguración de formas de MailChimp para WordPress%s."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
149
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
150
  msgid "Email address"
151
  msgstr "Dirección de correo electrónico"
152
 
153
  #: mailchimp-for-wordpress/includes/functions/general.php:22
154
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
155
  msgid "Your email address"
156
  msgstr "Tu dirección de correo electrónico"
157
 
158
  #: mailchimp-for-wordpress/includes/functions/general.php:23
159
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
160
  msgid "Sign up"
161
  msgstr "Registro"
162
 
163
  #: mailchimp-for-wordpress/includes/functions/general.php:30
164
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
165
  msgid "Sign me up for the newsletter!"
166
  msgstr "¡Suscríbeme a la lista de suscriptores!"
167
 
168
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
169
  msgid ""
170
  "Thank you, your sign-up request was successful! Please check your e-mail "
171
  "inbox."
172
+ msgstr "¡Gracias, su solucitud de suscripción fue completada! Por favor verifique su correo electrónico."
173
 
174
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
175
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
176
  msgid "Oops. Something went wrong. Please try again later."
177
  msgstr "Ups. Algo salió mal. Por favor, intentalo otra vez más tarde. "
178
 
179
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
180
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
181
  msgid "Please provide a valid email address."
182
  msgstr "Por favor, introduce una cuenta de correo valida"
183
 
184
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
185
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
186
  msgid "Given email address is already subscribed, thank you!"
187
  msgstr "La dirección de correo electrónico facilitada ya está suscrita, ¡gracias!"
188
 
189
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
190
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
191
  msgid "Please complete the CAPTCHA."
192
  msgstr "Por favor, introduce el código de seguridad"
193
 
194
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
195
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
196
  msgid "Please fill in the required fields."
197
  msgstr "Por favor rellena los campos solicitados."
198
 
260
  msgid "No"
261
  msgstr "No"
262
 
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
266
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
267
  msgid "MailChimp for WordPress - Error"
268
+ msgstr "MailChimp para WordPress - Error"
269
 
270
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
271
  msgid ""
272
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
273
  "settings</a>."
274
+ msgstr "Por favor seleccione una lista a suscribirse en la <a href=\"%s\"> configuración de casillas</a>."
275
 
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
277
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
278
  msgid "This message is only visible to administrators for debugging purposes."
279
+ msgstr "Este mensaje es solo visible a los administradores para fines de depuración."
280
 
281
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
282
  msgid ""
283
  "The MailChimp server returned the following error message as a response to "
284
  "our sign-up request:"
285
+ msgstr "El servidor de MailChimp devolvió el siguiente mensaje de error como respuesta a su solicitud de suscripción:"
286
 
287
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
288
  msgid "This is the data that was sent to MailChimp:"
289
+ msgstr "Esta es la data que fue enviada a MailChimp:"
290
 
291
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
292
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
293
  msgid "Email address:"
294
  msgstr "Dirección de Email:"
295
 
296
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
297
  msgid "Merge variables:"
298
  msgstr "Unificar variables:"
299
 
353
 
354
  #: mailchimp-for-wordpress/includes/views/api-settings.php:112
355
  msgid "No lists were found in your MailChimp account"
356
+ msgstr "No se encontró ninguna lista en su cuenta de MailChimp"
357
 
358
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
359
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
457
  msgid "Select \"yes\" if the checkbox appears in a weird place."
458
  msgstr "Seleccione \"sí \" si la casilla de verificación aparece en un lugar inapropiado"
459
 
460
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
461
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
462
+ msgid "WooCommerce checkbox position"
463
+ msgstr "Posición de los checkbox en WooCommerce"
464
+
465
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
466
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
467
+ msgid "After the billing details"
468
+ msgstr "Detalles tras la factura"
469
+
470
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
471
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
472
+ msgid "After the additional information"
473
+ msgstr "Tras la información extra"
474
+
475
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
476
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
477
+ msgid ""
478
+ "Choose the position for the checkbox in your WooCommerce checkout form."
479
+ msgstr "Escoja la posición de los checkbox en tu formulario de salida de WooCommerce."
480
+
481
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
482
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
483
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
484
  msgid "Form Settings"
485
  msgstr "Propiedades del formulario"
488
  msgid ""
489
  "To use the MailChimp sign-up form, configure the form below and then either "
490
  "paste %s in the content of a post or page or use the widget."
491
+ msgstr "Para usar la forma de suscripción de MailChimp, configure la forma de abajo y luego pegue %s en el contenido de un artículo o página, o utilice el widget."
492
 
493
  #: mailchimp-for-wordpress/includes/views/form-settings.php:20
494
  msgid "Required form settings"
504
  msgid "Yes, load basic form styles"
505
  msgstr "Si, carga los estilos de formulario básicos"
506
 
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
508
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
509
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
510
+ msgid "(PRO ONLY)"
511
+ msgstr "(SOLO PRO)"
512
+
513
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
514
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
515
  msgid "Yes, load my custom form styles"
554
  msgid ""
555
  "If you want to load some default CSS styles, select \"basic formatting "
556
  "styles\" or choose one of the color themes"
557
+ msgstr "Si usted desea cargar la hoja de estilo (CSS) por defecto, seleccione \"Estilo de formato básico\" o escoja uno de los temas de colores."
558
 
559
  #: mailchimp-for-wordpress/includes/views/form-settings.php:45
560
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
565
  msgid ""
566
  "Select the list(s) to which people who submit this form should be "
567
  "subscribed."
568
+ msgstr "Seleccione la(s) lista(s) a la cual las personas que usen esta forma deben ser suscritas."
569
 
570
  #: mailchimp-for-wordpress/includes/views/form-settings.php:69
571
  msgid "Form mark-up"
572
+ msgstr "Marcado de la forma"
573
 
574
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
575
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
576
  msgid "Your form is missing the following (required) form fields:"
577
  msgstr "Tu formulario necesita los siguientes campos (requeridos):"
578
 
630
 
631
  #: mailchimp-for-wordpress/includes/views/form-settings.php:158
632
  msgid "Form Settings & Messages"
633
+ msgstr "Configuración de Formas y Mensajes"
634
 
635
  #: mailchimp-for-wordpress/includes/views/form-settings.php:162
636
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
664
 
665
  #: mailchimp-for-wordpress/includes/views/form-settings.php:192
666
  msgid "Example: %s"
667
+ msgstr "Ejemplo: %s"
668
 
669
  #: mailchimp-for-wordpress/includes/views/form-settings.php:193
670
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
676
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:197
678
  msgid "Success message"
679
+ msgstr "Mensaje de exitoso"
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:201
682
  msgid "Invalid email address message"
683
+ msgstr "Mensaje de dirección de correo electrónico inválida"
684
 
685
  #: mailchimp-for-wordpress/includes/views/form-settings.php:205
686
  msgid "Required field missing message"
687
+ msgstr "Mensaje de campo requerido"
688
 
689
  #: mailchimp-for-wordpress/includes/views/form-settings.php:209
690
  msgid "Already subscribed message"
691
+ msgstr "Mensaje de \"Ya está suscrito\""
692
 
693
  #: mailchimp-for-wordpress/includes/views/form-settings.php:214
694
  msgid "Invalid CAPTCHA message"
696
 
697
  #: mailchimp-for-wordpress/includes/views/form-settings.php:219
698
  msgid "General error message"
699
+ msgstr "Mensaje de error general"
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:225
702
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:181
704
  msgid "HTML tags like %s are allowed in the message fields."
705
  msgstr "Las etiquetas HTML como %s están permitidas en los campos del mensaje."
706
 
707
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
708
+ msgid "Building your sign-up form"
709
+ msgstr ""
710
+
711
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
712
+ msgid ""
713
+ "At a minimum, your form should include just an %s field and a submit button."
714
+ msgstr ""
715
+
716
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
717
+ msgid ""
718
+ "Add more form fields if your selected lists require more fields. Field names"
719
+ " should match the field tags of the selected lists. Use the \"Add a new "
720
+ "field\" tool to have the HTML generated for you."
721
+ msgstr ""
722
+
723
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
724
+ msgid "Form Styling"
725
+ msgstr ""
726
+
727
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
728
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
729
+ msgstr ""
730
+
731
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
732
+ msgid ""
733
+ "You can add the CSS rules to your theme stylesheet using the <a "
734
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
735
+ " plugin like %s"
736
+ msgstr ""
737
+
738
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
739
+ msgid ""
740
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
741
+ "selectors you can use to target the different form elements."
742
+ msgstr ""
743
+
744
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
745
+ msgid ""
746
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
747
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
748
+ "lets you customize form styles without writing any code."
749
+ msgstr ""
750
+
751
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
752
  msgid "Form variables"
753
  msgstr "Variables del formulario"
754
 
755
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
756
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
757
  msgid "Use the following variables to add some dynamic content to your form."
758
  msgstr "Utiliza las siguientes variables para añadir algo de contenido dinámico a tu formulario"
759
 
760
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
761
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
762
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
763
+ msgstr ""
764
+
765
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
766
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
767
  msgid "Replaced with the form response (error or success messages)."
768
  msgstr "Sustituya la respuesta del formulario (mensajes de error ó éxito)."
769
 
770
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
771
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
772
  msgid "Replaced with a captcha field."
773
  msgstr "Reemplace con un campo captcha."
774
 
775
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
776
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
777
  msgid "Replaced with the number of subscribers on the selected list(s)"
778
  msgstr "Se sustituye con el número de suscriptores de la lista seleccionada (s)"
779
 
780
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
781
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
782
  msgid "Replaced with the current site language, eg: %s"
783
  msgstr "Reemplace por el idioma actual del sitio, por ejemplo: %s"
784
 
785
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
786
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
787
  msgid "Replaced with the visitor's IP address"
788
  msgstr "Se sustituye por la dirección IP del visitante"
789
 
790
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
791
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
792
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
793
  msgstr "Se sustituye con la fecha actual (aaaa/mm/dd ejemplo: %s)"
794
 
795
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
796
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
797
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
798
  msgstr "Se susitutiye con la hora actual (hh:mm:ss por ejemplo: %s)"
799
 
800
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
801
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
802
  msgid ""
803
  "Replaced with the logged in user's email (or nothing, if there is no logged "
804
  "in user)"
805
  msgstr "Se sustituye con la cuenta de correo del usuario que ha iniciado sesión (o ninguna, si no hay un usuario que ha iniciado sesión)"
806
 
807
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
808
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
809
  msgid "First name of the current user"
810
  msgstr "Apellido del usuario actual"
811
 
812
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
813
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
814
  msgid "Last name of the current user"
815
  msgstr "Segundo apellido del usuario actual"
816
 
817
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
818
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
819
  msgid "Current user ID"
820
  msgstr "ID de usuario actual"
821
 
822
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
823
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
824
  msgid "Current URL"
825
  msgstr "URL actual"
826
 
831
 
832
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
833
  msgid "Use the tool below to generate the HTML for your form fields."
834
+ msgstr "Utilice la herramienta de abajo para general el código HTML para su formulario."
835
 
836
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
837
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:32
904
 
905
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:68
906
  msgid "Select at least one list first."
907
+ msgstr "Seleccione al menos una lista primero."
908
 
909
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
910
  msgid ""
911
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
912
+ "translated in your language or do you spot errors with the current "
913
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
914
+ "translation project and click \"help translate\"</a>."
915
  msgstr ""
916
 
917
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
918
  msgid ""
919
+ "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
920
+ "now</a> for an even better plugin, you will love it."
921
+ msgstr "¿Le gusta el plugin? <a href=\"%s\">Actualice a MailChimp para WordPress Pro ahora</a> para un disfrutar un plugin aún mejor. Te va a encantar."
922
+
923
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
924
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
925
+ msgid ""
926
  "This plugin is not developed by or affiliated with MailChimp in any way."
927
+ msgstr "Este plugin no es desarrollado ni esta afiliado a MailChimp de ninguna manera."
928
 
929
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
930
  msgid "Looking for support?"
931
+ msgstr "¿Necesita ayuda?"
932
 
933
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
934
  msgid ""
935
  "Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
936
  "use the <a href=\"%s\">support forums</a> on WordPress.org."
937
+ msgstr "Asegúrese de leer las <a href=\"%s\">preguntas más frecuentes</a> o use el <a href=\"%s\">foro de ayuda</a> en WordPress.org."
938
 
939
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
940
  msgid ""
941
  "If you need priority support, please <a href=\"%s\">upgrade to the premium "
942
  "version</a>."
943
+ msgstr "Si necesita ayuda con prioridad, por favor <a href=\"%s\"> actualice el plugin a la versión premium</a>."
944
 
945
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
946
  msgid "Show a token of your appreciation"
947
+ msgstr "Danos una muestra de afecto."
948
 
949
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
950
+ msgid "Upgrade to MailChimp for WordPress Pro"
951
  msgstr ""
952
 
953
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
954
+ msgid "Leave a %s plugin review on WordPress.org"
955
+ msgstr "Deja una revision del plugin %s en WordPress.org"
956
+
957
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
958
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
959
+ msgstr "Estoy usando MailChimp para WordPress por @DannyvanKooten - Es genial!"
960
 
961
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
962
  msgid "Tweet about MailChimp for WordPress"
963
+ msgstr "Tuitear acerca de MailChimp para WordPress"
964
 
965
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
966
  msgid ""
967
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
968
+ "page</a>."
969
  msgstr ""
970
 
971
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
972
  msgid "Vote \"works\" on the WordPress.org plugin page"
973
+ msgstr "Vota \"Works\" en la pagina del plugin en WordPress.org"
974
+
975
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
976
+ msgid "About the developer"
977
  msgstr ""
978
 
979
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
980
  msgid ""
981
  "This plugin has an even better premium version, I am sure you will love it."
982
+ msgstr "Este plugin tiene una versión premium aun mejor. Estoy seguro que te va a gustar."
983
 
984
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
985
  msgid ""
986
  "Pro features include better and multiple forms, advanced and easy form "
987
  "styling, more default themes, detailed statistics and priority support."
988
+ msgstr "Las características Pro incluyen mejores y múltiples formularios, fácil creación de estilos avanzados, más temas por defecto, información estadística detallada y soporte técnico con prioridad."
989
 
990
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
991
  msgid "More information about MailChimp for WP Pro"
992
+ msgstr "Más información acerca de MailChimp para WP Pro"
993
 
994
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
995
  msgid "Documentation"
996
  msgstr "Documentacion"
997
 
998
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
999
  msgid "Save Form"
1000
  msgstr "Guardar formulario"
1001
 
1002
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1003
  msgid "Update Form"
1004
  msgstr "Actualizar formulario"
1005
 
1006
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1007
  msgid "Back to general form settings"
1008
  msgstr "Volver a las opciones de configuracion generales"
1009
 
1010
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1011
  msgid "Form updated."
1012
  msgstr "Formulario actualizado."
1013
 
1014
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1015
  msgid "Form saved."
1016
  msgstr "Formulario guardado."
1017
 
1018
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1019
  msgid "Optional Settings"
1020
  msgstr "Propiedades Opcionales"
1021
 
1022
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1023
  msgid "Form Variables"
1024
  msgstr "Variables del formulario"
1025
 
1026
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1027
  msgid "MailChimp & License"
1028
  msgstr "MailChimp & Licencia"
1029
 
1030
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1031
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1032
  msgid "Reports"
1033
  msgstr "Informes"
1034
 
1035
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1036
  msgid ""
1037
  "Please make sure the plugin is connected to MailChimp. <a "
1038
  "href=\"%s\">Provide a valid API key.</a>"
1039
  msgstr "Por favor, asegúrrate de que el plugin está conectado a MailChimp. <a href=\"%s\"> Proporciona una clave de API válida. </a>"
1040
 
1041
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1042
  msgid "End date can't be before the start date"
1043
  msgstr "La fecha final no puede ser anterior a la fecha de inicio"
1044
 
1045
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1046
  msgid ""
1047
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1048
  "page."
1049
  msgstr "Has desabilitado la entrada utilizando el filtro %s. Re-habilítalo para usar la página de Informes."
1050
 
1051
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1052
  msgid ""
1053
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1054
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1065
  msgid "%sShow generated CSS%s"
1066
  msgstr "%sMuestra el CSS generado%s"
1067
 
1068
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1069
  msgid ""
1070
  "To apply these styles on your website, select \"load custom form styles\" in"
1071
  " the %sform settings%s"
1072
  msgstr "Para aplicar estos estilos en tu sitio web, selecciona \"cargar estilos de formulario personalizado\" en los %sajustes de formulario%s"
1073
 
1074
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1075
  msgid "The %sCSS Stylesheet%s has been created."
1076
  msgstr "La %shoja de estilos CSS%s ha sido creada."
1077
 
1109
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1110
  msgstr "Has alcanzado el límite de tus activaciones. Debes <a href=\"%s\">reestablecer</a> o <a href=\"%s\">actualizar tu licencia</a> para usarlo en este sitio."
1111
 
1112
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1113
  msgid ""
1114
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1115
+ "you want to use it again."
1116
+ msgstr ""
1117
 
1118
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1119
  msgid "Failed to activate your license, your license key seems to be invalid."
1120
  msgstr "No se pudo activar la licencia, la clave de licencia parece inválida."
1121
 
1122
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1123
  msgid "Your %s license has been deactivated."
1124
  msgstr "Su licencia de %s se ha desactivado."
1125
 
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1128
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1129
+ msgid ""
1130
+ "Your plugin license has expired. You will no longer have access to plugin "
1131
+ "updates unless you <a href=\"%s\">renew your license</a>."
1132
+ msgstr ""
1133
+
1134
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1135
  msgid "Failed to deactivate your %s license."
1136
  msgstr "No se pudo desactivar su licencia de %s"
1137
 
1138
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1139
  msgid "Request error: \"%s\""
1140
  msgstr "Error de solicitud: \"%s\""
1141
 
1142
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1143
  msgid "%s: License Settings"
1144
  msgstr "%s: Configuración de licencia"
1145
 
1167
 
1168
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
1169
  msgid "ACTIVE"
1170
+ msgstr "ACTIVO"
1171
 
1172
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
1173
  msgid "you are receiving updates"
1174
+ msgstr "usted esta recibiendo actualizaciones"
1175
 
1176
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1177
+ msgid "EXPIRED"
1178
  msgstr ""
1179
 
1180
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1181
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1182
  msgid "you are <strong>not</strong> receiving updates."
1183
+ msgstr "usted <strong>no está</strong> recibiendo actualizaciones."
1184
 
1185
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1186
+ msgid "INACTIVE"
1187
+ msgstr "INACTIVO"
1188
+
1189
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1190
  msgid "Toggle license status"
1191
  msgstr "Estado de la licencia"
1192
 
1193
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1194
  msgid "Deactivate License"
1195
  msgstr "Desactiva la licencia"
1196
 
1197
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1198
  msgid ""
1199
  "(deactivate your license so you can activate it on another WordPress site)"
1200
  msgstr "(desactivar la licencia para que pueda activarla en otro sitio de WordPress)"
1201
 
1202
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1203
  msgid "Activate License"
1204
  msgstr "Activar la licencia"
1205
 
1206
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1207
  msgid "Please enter a license key in the field below first."
1208
  msgstr "Por favor, primero introduce una clave de licencia en campo de abajo"
1209
 
1210
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1211
  msgid "License Key"
1212
  msgstr "Llave de licencia"
1213
 
1214
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1215
  msgid "Paste your license key here, as found in the email receipt."
1216
  msgstr "Pega aquí la clave de tu licencia, que encontrarás en el email recibido."
1217
 
1218
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1219
  msgid "You defined your license key using the %s PHP constant."
1220
  msgstr "Ha definido la clave de licencia utilizando el %s PHP constante."
1221
 
1222
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1223
  msgid "Your %s license will expire on %s."
1224
  msgstr "Tu %s licencia expirará el %s."
1225
 
1226
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1227
  msgid "%sRenew your license now%s."
1228
  msgstr "%sRenovar licencia ahora%s."
1229
 
1237
  " correct form ID."
1238
  msgstr "<strong> Error: </strong> formulario de registro no encontrado. Por favor, comprueba si has utilizado el ID de formulario correcto."
1239
 
1240
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1241
+ msgid "New MailChimp Sign-Up"
1242
+ msgstr ""
1243
+
1244
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1245
  msgid "New Sign-Up"
1246
  msgstr "Nuevo registro"
1247
 
1248
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1249
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1250
  msgstr "<strong>%s</strong> fomulario de alta en %s en %s está utilizando el formato \"%s \"."
1251
 
1252
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1253
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1254
+ msgid "List"
1255
+ msgstr "Lista"
1256
+
1257
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1258
+ msgid "Other fields"
1259
+ msgstr ""
1260
+
1261
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1262
  msgid ""
1263
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1264
  "be added to the selected MailChimp lists until they confirm their email "
1265
  "address."
1266
  msgstr "Date cuenta que has habilitado la doble opción para el formulario \"%s\". El usuario no se añadirá a las listas seleccionadas de MailChimp hasta que ellos confirmen sus direcciones de email. "
1267
 
1268
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1269
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1270
  msgstr "Este correo fue auto-enviado por el plugin MailChimp para WordPress"
1271
 
1272
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1273
+ msgid "IP Address"
1274
+ msgstr ""
1275
+
1276
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1277
  msgid "MailChimp for WP Form"
1278
  msgstr "MailChimp para el Formulario de WP"
1299
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1300
  msgstr "No tienes ningún formulario de inscripción. <a href=\"%s\">Crea uno ahora.</ a>"
1301
 
1302
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1303
  msgid ""
1304
  "Thank you, your sign-up request was successful! Please check your email "
1305
  "inbox to confirm."
1310
  msgstr "ID"
1311
 
1312
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1314
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1315
  msgid "Form"
1316
  msgstr "Formulario"
1317
 
1347
 
1348
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:33
1349
  msgid "Subscriber Log"
1350
+ msgstr "Registro de Suscriptores"
1351
 
1352
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:34
1353
  msgid "Subscriber Logs"
1354
+ msgstr "Registros de Suscriptores"
1355
 
1356
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:53
1357
  msgid "Email"
1358
  msgstr "Correo"
1359
 
 
 
 
 
1360
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1361
  msgid "Type"
1362
  msgstr "Tipo"
1366
  msgstr "Origen"
1367
 
1368
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1369
+ msgid "Data"
1370
+ msgstr ""
1371
 
1372
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1373
  msgid "Subscribed"
1375
 
1376
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:116
1377
  msgid "Log items deleted."
1378
+ msgstr "Artículos de registro borrados."
1379
 
1380
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1381
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1382
  msgid "Comment"
1383
  msgstr "Comentario"
1384
 
1386
  msgid "deleted"
1387
  msgstr "eliminado"
1388
 
1389
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1390
  msgid "Registration"
1391
  msgstr "Registro"
1392
 
1393
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1394
  msgid "MultiSite registration"
1395
  msgstr "Registro en múltiples sitios"
1396
 
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1398
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1399
  msgid "Checkout"
1400
  msgstr "Salir"
1401
 
1402
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1403
  msgid "Contact Form 7"
1404
  msgstr "Formulario de contacto 7"
1405
 
1406
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1407
  msgid "bbPress: New Topic"
1408
  msgstr "bbPress: Nuevo asunto"
1409
 
1410
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1411
  msgid "bbPress: New Reply"
1412
  msgstr "bbPress: Nueva respuesta"
1413
 
1414
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1415
  msgid "Other Form"
1416
  msgstr "Otro formulario"
1417
 
1418
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1419
  msgid "No subscribe requests found."
1420
  msgstr "Ninguna solicitud de suscripcion encontrada"
1421
 
1422
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1423
  msgid "All"
1424
  msgstr "Todo"
1425
 
1426
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1427
  msgid "Checkbox"
1428
  msgstr "Casilla de verificación"
1429
 
1499
  msgid ""
1500
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1501
  "forms."
1502
+ msgstr "Use %s en el código de Contact Form 7 para añadir una casilla de suscripción a su forma de CF7."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
 
1504
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1505
  msgid "Custom label texts"
1625
 
1626
  #. Description of the plugin/theme
1627
  msgid "Adds various sign-up methods to your website."
1628
+ msgstr "Añade varios métodos de suscripción a su página web."
1629
 
1630
  #. Author of the plugin/theme
1631
  msgid "Danny van Kooten"
languages/mailchimp-for-wp-fi_FI.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/fi_FI/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/fi_FI/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-fr_FR.po CHANGED
@@ -1,15 +1,18 @@
1
  # Copyright (C) 2014 Danny van Kooten
2
  # This file is distributed under the GPL v3.
3
  # Translators:
 
 
 
4
  # François KUSZTOS <kukus___@hotmail.com>, 2014
5
  # fgerber <gerber.francois@gmail.com>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: MailChimp for WordPress\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
10
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
11
- "PO-Revision-Date: 2014-11-29 09:20+0000\n"
12
- "Last-Translator: fgerber <gerber.francois@gmail.com>\n"
13
  "Language-Team: French (France) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/fr_FR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,7 +30,7 @@ msgstr ""
27
  "X-Textdomain-Support: yes\n"
28
 
29
  #: mailchimp-for-wordpress/includes/class-admin.php:130
30
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
31
  msgid "Settings"
32
  msgstr "Paramètres"
33
 
@@ -44,80 +47,79 @@ msgid "MailChimp Settings"
44
  msgstr "Réglages MailChimp"
45
 
46
  #: mailchimp-for-wordpress/includes/class-admin.php:161
47
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
48
  msgid "Checkboxes"
49
  msgstr "Cases à cocher"
50
 
51
  #: mailchimp-for-wordpress/includes/class-admin.php:162
52
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
53
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
54
  msgid "Forms"
55
  msgstr "Formulaires"
56
 
57
- #: mailchimp-for-wordpress/includes/class-admin.php:310
58
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
59
  msgid "Comment form"
60
  msgstr "Formulaire de commentaires"
61
 
62
- #: mailchimp-for-wordpress/includes/class-admin.php:311
63
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
64
  msgid "Registration form"
65
  msgstr "Formulaire d'inscription"
66
 
67
- #: mailchimp-for-wordpress/includes/class-admin.php:315
68
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
69
  msgid "MultiSite forms"
70
  msgstr "Formulaires multisite"
71
 
72
- #: mailchimp-for-wordpress/includes/class-admin.php:319
73
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
74
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
75
  msgid "BuddyPress registration"
76
  msgstr "Inscription à BuddyPress"
77
 
78
- #: mailchimp-for-wordpress/includes/class-admin.php:327
79
- #: mailchimp-for-wordpress/includes/class-admin.php:331
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
81
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
82
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
83
- msgid "(PRO ONLY)"
84
- msgstr "(Seulement pour les pros)"
85
 
86
- #: mailchimp-for-wordpress/includes/class-admin.php:360
87
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
88
  msgid "Renewed MailChimp cache."
89
  msgstr "Renouvellement du cache MailChimp"
90
 
91
- #: mailchimp-for-wordpress/includes/class-admin.php:362
92
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
93
  msgid "Failed to renew MailChimp cache - please try again later."
94
  msgstr "Le renouvellement du cache MailChimp a échoué - veuillez ressayer plus-tard."
95
 
96
- #: mailchimp-for-wordpress/includes/class-admin.php:395
97
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
98
  msgid "An EMAIL field. Example: <code>%s</code>"
99
  msgstr "Un champ EMAIL. Exemple : <code>%s</code>"
100
 
101
- #: mailchimp-for-wordpress/includes/class-admin.php:401
102
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
103
  msgid "A submit button. Example: <code>%s</code>"
104
  msgstr "Un bouton Envoyer. Exemple : <code>%s</code>"
105
 
106
- #: mailchimp-for-wordpress/includes/class-admin.php:401
107
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
108
  msgid "Sign Up"
109
  msgstr "Abonnez-vous"
110
 
111
- #: mailchimp-for-wordpress/includes/class-admin.php:426
112
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
113
  msgid "A '%s' field"
114
  msgstr "Un champ '%s'"
115
 
116
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
117
- msgid "MailChimp Error:"
118
- msgstr "Erreur de MailChimp : "
119
-
120
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
121
  msgid "Please select at least one list to subscribe to."
122
  msgstr "Merci de sélectionner au moins une liste d'abonnement."
123
 
@@ -146,53 +148,54 @@ msgid ""
146
  msgstr "Vous pouvez éditer votre formulaire d'enregistrement dans le %sMailChimp for WordPress form settings%s."
147
 
148
  #: mailchimp-for-wordpress/includes/functions/general.php:21
149
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
150
  msgid "Email address"
151
  msgstr "Adresse de courrier électronique"
152
 
153
  #: mailchimp-for-wordpress/includes/functions/general.php:22
154
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
155
  msgid "Your email address"
156
  msgstr "Votre adresse de courrier électronique"
157
 
158
  #: mailchimp-for-wordpress/includes/functions/general.php:23
159
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
160
  msgid "Sign up"
161
  msgstr "Abonnez-vous"
162
 
163
  #: mailchimp-for-wordpress/includes/functions/general.php:30
164
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
165
  msgid "Sign me up for the newsletter!"
166
  msgstr "Inscrivez-vous pour recevoir notre newsletter!"
167
 
168
- #: mailchimp-for-wordpress/includes/functions/general.php:44
169
  msgid ""
170
  "Thank you, your sign-up request was successful! Please check your e-mail "
171
  "inbox."
172
  msgstr "Merci, votre enregistrement est un succès! Veuillez vérifier votre boite e-mail."
173
 
174
- #: mailchimp-for-wordpress/includes/functions/general.php:45
175
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
176
  msgid "Oops. Something went wrong. Please try again later."
177
  msgstr "Oops, Une erreur s'est produite. Veuillez réessayer plus-tard "
178
 
179
- #: mailchimp-for-wordpress/includes/functions/general.php:46
180
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
181
  msgid "Please provide a valid email address."
182
  msgstr "Veuillez fournir une adresse email valide."
183
 
184
- #: mailchimp-for-wordpress/includes/functions/general.php:47
185
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
186
  msgid "Given email address is already subscribed, thank you!"
187
  msgstr "L'adresse email fourni est déjà inscrit, merci !"
188
 
189
- #: mailchimp-for-wordpress/includes/functions/general.php:48
190
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
191
  msgid "Please complete the CAPTCHA."
192
  msgstr "Veuillez retranscrire le code CAPTCHA"
193
 
194
- #: mailchimp-for-wordpress/includes/functions/general.php:49
195
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
196
  msgid "Please fill in the required fields."
197
  msgstr "Veuillez remplir les champs obligatoires."
198
 
@@ -260,39 +263,40 @@ msgstr "Oui"
260
  msgid "No"
261
  msgstr "Non"
262
 
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
266
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
267
  msgid "MailChimp for WordPress - Error"
268
  msgstr "MailChimp pour Wordpress - Erreur"
269
 
270
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
271
  msgid ""
272
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
273
  "settings</a>."
274
- msgstr ""
275
 
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
277
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
278
  msgid "This message is only visible to administrators for debugging purposes."
279
  msgstr "Ce message n'est visible que pour les administrateurs, à des fins de débuggage."
280
 
281
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
282
  msgid ""
283
  "The MailChimp server returned the following error message as a response to "
284
  "our sign-up request:"
285
- msgstr ""
286
 
287
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
288
  msgid "This is the data that was sent to MailChimp:"
289
- msgstr ""
290
 
291
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
292
  msgid "Email address:"
293
  msgstr "Adresse email : "
294
 
295
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
296
  msgid "Merge variables:"
297
  msgstr "Fusionner les variables : "
298
 
@@ -341,14 +345,14 @@ msgid ""
341
  "The table below shows your MailChimp lists data. If you applied changes to "
342
  "your MailChimp lists, please use the following button to renew your cached "
343
  "data."
344
- msgstr ""
345
 
346
  #: mailchimp-for-wordpress/includes/views/api-settings.php:54
347
  #: mailchimp-for-wordpress/includes/views/api-settings.php:125
348
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
349
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
350
  msgid "Renew MailChimp lists"
351
- msgstr ""
352
 
353
  #: mailchimp-for-wordpress/includes/views/api-settings.php:112
354
  msgid "No lists were found in your MailChimp account"
@@ -364,7 +368,7 @@ msgstr "Paramètres de case à cocher"
364
  msgid ""
365
  "To use sign-up checkboxes, select at least one list and one form to add the "
366
  "checkbox to."
367
- msgstr ""
368
 
369
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
370
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
@@ -376,7 +380,7 @@ msgstr "Paramètres de Mailchimp pour les cases à cocher"
376
  msgid ""
377
  "If you want to use sign-up checkboxes, select at least one MailChimp list to"
378
  " subscribe people to."
379
- msgstr ""
380
 
381
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
382
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
@@ -388,14 +392,14 @@ msgstr "Listes MailChimp"
388
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
389
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
390
  msgid "No lists found, %sare you connected to MailChimp?%s"
391
- msgstr "Pas de listes trouvées,%sare êtes vous sure d'avoir connecté MailChimp ?%s"
392
 
393
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
394
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
395
  msgid ""
396
  "Select the list(s) to which people who check the checkbox should be "
397
  "subscribed."
398
- msgstr ""
399
 
400
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
401
  #: mailchimp-for-wordpress/includes/views/form-settings.php:109
@@ -428,7 +432,7 @@ msgstr "Ajoutez la case à cocher à ces formulaires"
428
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
429
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
430
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
431
- msgstr ""
432
 
433
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
434
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:91
@@ -439,7 +443,7 @@ msgstr "Texte de l'etiquette de la case à cocher"
439
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:94
440
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:134
441
  msgid "HTML tags like %s are allowed in the label text."
442
- msgstr ""
443
 
444
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
445
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:98
@@ -456,8 +460,29 @@ msgstr "Voulez-vous charger du code CSS par défaut ?"
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Sélectionner \"oui\" si la case à cocher apparaît à un endroit bizarre."
458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
460
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
461
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
462
  msgid "Form Settings"
463
  msgstr "Paramètres du formulaire"
@@ -475,22 +500,28 @@ msgstr "Paramètre de formulaire requis"
475
  #: mailchimp-for-wordpress/includes/views/form-settings.php:24
476
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
477
  msgid "Load form styles (CSS)?"
478
- msgstr ""
479
 
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:28
481
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
482
  msgid "Yes, load basic form styles"
483
- msgstr ""
 
 
 
 
 
 
484
 
485
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
486
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
487
  msgid "Yes, load my custom form styles"
488
- msgstr ""
489
 
490
  #: mailchimp-for-wordpress/includes/views/form-settings.php:30
491
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
492
  msgid "Yes, load default form theme"
493
- msgstr ""
494
 
495
  #: mailchimp-for-wordpress/includes/views/form-settings.php:31
496
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
@@ -531,7 +562,7 @@ msgstr "Si vous voulez charger certain style CSS par défaut, selectionnez \"bas
531
  #: mailchimp-for-wordpress/includes/views/form-settings.php:45
532
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
533
  msgid "Lists this form subscribes to"
534
- msgstr ""
535
 
536
  #: mailchimp-for-wordpress/includes/views/form-settings.php:63
537
  msgid ""
@@ -544,9 +575,9 @@ msgid "Form mark-up"
544
  msgstr "Formulaire de balisage"
545
 
546
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
547
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
548
  msgid "Your form is missing the following (required) form fields:"
549
- msgstr ""
550
 
551
  #: mailchimp-for-wordpress/includes/views/form-settings.php:92
552
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:87
@@ -569,7 +600,7 @@ msgstr "Voulez-vous envoyer un email de bienvenue ?"
569
  msgid ""
570
  "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
571
  "succeeds (only when double opt-in is disabled)."
572
- msgstr ""
573
 
574
  #: mailchimp-for-wordpress/includes/views/form-settings.php:133
575
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
@@ -583,7 +614,7 @@ msgstr "Voulez-vous que les données des internautes déjà inscrit soit mise à
583
  msgid ""
584
  "Select \"yes\" if you want to update existing subscribers (instead of "
585
  "showing the \"already subscribed\" message)."
586
- msgstr ""
587
 
588
  #: mailchimp-for-wordpress/includes/views/form-settings.php:143
589
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
@@ -598,7 +629,7 @@ msgid ""
598
  "Select \"yes\" if you want to replace the interest groups with the groups "
599
  "provided instead of adding the provided groups to the member's interest "
600
  "groups (only when updating a subscriber)."
601
- msgstr ""
602
 
603
  #: mailchimp-for-wordpress/includes/views/form-settings.php:158
604
  msgid "Form Settings & Messages"
@@ -614,7 +645,7 @@ msgstr "Activer soumission du formulaire grâce à la technologie AJAX ?"
614
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
615
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
616
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
617
- msgstr ""
618
 
619
  #: mailchimp-for-wordpress/includes/views/form-settings.php:176
620
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
@@ -676,74 +707,123 @@ msgstr "Message d'erreur général"
676
  msgid "HTML tags like %s are allowed in the message fields."
677
  msgstr "Les balises HTML tel que %s sont acceptées dans les champs."
678
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
680
  msgid "Form variables"
681
  msgstr "Variables de formulaire"
682
 
683
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
684
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
685
  msgid "Use the following variables to add some dynamic content to your form."
686
- msgstr ""
687
 
688
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
689
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
690
- msgid "Replaced with the form response (error or success messages)."
691
  msgstr ""
692
 
693
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
694
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
695
- msgid "Replaced with a captcha field."
696
- msgstr ""
697
 
698
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
699
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
700
- msgid "Replaced with the number of subscribers on the selected list(s)"
701
- msgstr ""
702
 
703
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
704
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
705
- msgid "Replaced with the current site language, eg: %s"
706
- msgstr ""
707
 
708
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
709
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
710
- msgid "Replaced with the visitor's IP address"
711
- msgstr ""
712
 
713
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
714
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
715
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
716
- msgstr ""
717
 
718
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
719
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
720
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
721
- msgstr ""
722
 
723
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
724
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
725
- msgid ""
726
- "Replaced with the logged in user's email (or nothing, if there is no logged "
727
- "in user)"
728
- msgstr ""
729
 
730
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
731
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
732
- msgid "First name of the current user"
733
- msgstr "Prénom de l'utilisateur actif"
 
 
734
 
735
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
736
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
737
- msgid "Last name of the current user"
738
- msgstr ""
739
 
740
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
741
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
742
- msgid "Current user ID"
743
- msgstr "Identifiant de l'utilisateur actif"
744
 
745
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
746
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
747
  msgid "Current URL"
748
  msgstr "URL active"
749
 
@@ -823,7 +903,7 @@ msgstr "Ajouter au formulaire"
823
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:61
824
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
825
  msgid "Generated HTML"
826
- msgstr ""
827
 
828
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:68
829
  msgid "Select at least one list first."
@@ -831,11 +911,20 @@ msgstr "Sélectionnez au moins une première liste."
831
 
832
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
833
  msgid ""
 
 
 
 
 
 
 
 
834
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
835
  "now</a> for an even better plugin, you will love it."
836
  msgstr "Ce plugin vous plait ? <a href=\"%s\"> Passez maintenant à la version pro de MailChimp for WordPress Pro</a> pour avoir un plugin encore plus puissant, vous allez l'adorer."
837
 
838
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
839
  msgid ""
840
  "This plugin is not developed by or affiliated with MailChimp in any way."
841
  msgstr "Ce plugin n'est aucunement développé ou affilié à la marque MailChimp déposée par le groupe \"The Rocket Science\"."
@@ -848,143 +937,146 @@ msgstr "Avez-vous besoin d'aide ?"
848
  msgid ""
849
  "Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
850
  "use the <a href=\"%s\">support forums</a> on WordPress.org."
851
- msgstr ""
852
 
853
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
854
  msgid ""
855
  "If you need priority support, please <a href=\"%s\">upgrade to the premium "
856
  "version</a>."
857
- msgstr ""
858
 
859
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
860
  msgid "Show a token of your appreciation"
861
- msgstr ""
862
 
863
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
864
- msgid "Leave a %s plugin review on WordPress.org"
865
  msgstr ""
866
 
867
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
868
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
869
  msgstr "J'utilise MailChimp pour WordPress par @DannyvanKooten - C'est top !"
870
 
871
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
872
  msgid "Tweet about MailChimp for WordPress"
873
  msgstr "Tweeter au sujet de MailChimp pour Wordpress"
874
 
875
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
876
  msgid ""
877
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
878
- "page</a>"
879
  msgstr ""
880
 
881
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
882
  msgid "Vote \"works\" on the WordPress.org plugin page"
883
  msgstr "Donner l'évaluation \"ça fonctionne\" sur la page WordPress.org du plugin."
884
 
 
 
 
 
885
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
886
  msgid ""
887
  "This plugin has an even better premium version, I am sure you will love it."
888
- msgstr ""
889
 
890
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
891
  msgid ""
892
  "Pro features include better and multiple forms, advanced and easy form "
893
  "styling, more default themes, detailed statistics and priority support."
894
- msgstr ""
895
 
896
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
897
  msgid "More information about MailChimp for WP Pro"
898
- msgstr ""
899
 
900
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
901
  msgid "Documentation"
902
  msgstr "Documentation"
903
 
904
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
905
  msgid "Save Form"
906
  msgstr "Enregistrer le formulaire"
907
 
908
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
909
  msgid "Update Form"
910
  msgstr "Mettre à jour le formulaire"
911
 
912
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
913
  msgid "Back to general form settings"
914
  msgstr "Revenir aux paramètres généraux du formulaire"
915
 
916
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
917
  msgid "Form updated."
918
  msgstr "Le formulaire a été mis à jour."
919
 
920
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
921
  msgid "Form saved."
922
  msgstr "Le formulaire a été enregistré."
923
 
924
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
925
  msgid "Optional Settings"
926
  msgstr "Paramètres optionnels"
927
 
928
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
929
  msgid "Form Variables"
930
  msgstr "Variables de formulaire."
931
 
932
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
933
  msgid "MailChimp & License"
934
- msgstr ""
935
 
936
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
937
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
938
  msgid "Reports"
939
  msgstr "Rapports"
940
 
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
942
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
943
- msgid "%s checkout"
944
- msgstr "%s achat"
945
-
946
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
947
  msgid ""
948
  "Please make sure the plugin is connected to MailChimp. <a "
949
  "href=\"%s\">Provide a valid API key.</a>"
950
  msgstr "Veuillez-vous assurer que le plugin est bien connecté à MailChimp. <a href=\"%s\">fournissez une clef d'API valide.</a>"
951
 
952
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
953
  msgid "End date can't be before the start date"
954
  msgstr "La date de fin ne peut plus ancienne que la date de début."
955
 
956
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
957
  msgid ""
958
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
959
  "page."
960
- msgstr ""
961
 
962
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
963
  msgid ""
964
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
965
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
966
  "it now</a> to prevent problems"
967
- msgstr ""
968
 
969
  #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:319
970
  msgid ""
971
  "Couldn't create the stylesheet. Manually add the generated CSS to your theme"
972
  " stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
973
- msgstr ""
974
 
975
  #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:320
976
  msgid "%sShow generated CSS%s"
977
- msgstr ""
978
 
979
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
980
  msgid ""
981
  "To apply these styles on your website, select \"load custom form styles\" in"
982
  " the %sform settings%s"
983
- msgstr ""
984
 
985
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
986
  msgid "The %sCSS Stylesheet%s has been created."
987
- msgstr ""
988
 
989
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:152
990
  msgid "I know. Don't bug me."
@@ -1020,29 +1112,37 @@ msgid ""
1020
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1021
  msgstr "Vous avez atteint votre limite d'activation . Vous devez <a href=\"%s\"> réinitialiser </a> ou <a href=\"%s\"> mettre à jour votre </a> licence pour utiliser le plugin sur ce site ."
1022
 
1023
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1024
  msgid ""
1025
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1026
- " order to use it again."
1027
- msgstr "Votre licence a expiré . Vous devez <a href=\"%s\"> vous réengager </a> afin d'utiliser de pouvoir continuer à utiliser la version pro du plugin ."
1028
 
1029
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1030
  msgid "Failed to activate your license, your license key seems to be invalid."
1031
  msgstr "L'activation de votre licence a échoué , votre clé de licence semble être invalide ."
1032
 
1033
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1034
  msgid "Your %s license has been deactivated."
1035
  msgstr "Votre %s licence a été desactivé"
1036
 
1037
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1038
  msgid "Failed to deactivate your %s license."
1039
  msgstr "La désactivation de votre %s licence a echoué"
1040
 
1041
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1042
  msgid "Request error: \"%s\""
1043
  msgstr "La demande a echoué: %s"
1044
 
1045
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1046
  msgid "%s: License Settings"
1047
  msgstr "%s: Paramètres de Licence"
1048
 
@@ -1077,96 +1177,118 @@ msgid "you are receiving updates"
1077
  msgstr "vous recevez des mises à jour"
1078
 
1079
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1080
- msgid "INACTIVE"
1081
- msgstr "INACTIF"
1082
 
1083
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1084
  msgid "you are <strong>not</strong> receiving updates."
1085
  msgstr "vous ne recevez <strong>pas</strong> de mise à jour"
1086
 
1087
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1088
  msgid "Toggle license status"
1089
  msgstr "Basculez l'état de la License "
1090
 
1091
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1092
  msgid "Deactivate License"
1093
  msgstr "Désactiver la licence"
1094
 
1095
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1096
  msgid ""
1097
  "(deactivate your license so you can activate it on another WordPress site)"
1098
  msgstr "(En désactivant votre License, vous pourrez réutiliser votre licence sur un autre site wordpress)"
1099
 
1100
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1101
  msgid "Activate License"
1102
  msgstr "Activer la licence"
1103
 
1104
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1105
  msgid "Please enter a license key in the field below first."
1106
  msgstr "Entrez une clef de licence dans le champs ci-dessous"
1107
 
1108
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1109
  msgid "License Key"
1110
  msgstr "Clef de licence"
1111
 
1112
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1113
  msgid "Paste your license key here, as found in the email receipt."
1114
  msgstr "Collez votre clef de licence que vous avez reçus par email ici."
1115
 
1116
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1117
  msgid "You defined your license key using the %s PHP constant."
1118
  msgstr "Utilisez la constante PHP %s pour définir votre clef de licence."
1119
 
1120
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1121
  msgid "Your %s license will expire on %s."
1122
  msgstr "Votre %s licence expirera le %s"
1123
 
1124
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1125
  msgid "%sRenew your license now%s."
1126
  msgstr "%s Renouvelez votre licence dès maintenant%s"
1127
 
1128
  #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:241
1129
  msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
1130
- msgstr ""
1131
 
1132
  #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:255
1133
  msgid ""
1134
  "<strong>Error:</strong> Sign-up form not found. Please check if you used the"
1135
  " correct form ID."
 
 
 
 
1136
  msgstr ""
1137
 
1138
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
1139
  msgid "New Sign-Up"
1140
  msgstr "Nouvelle Inscription"
1141
 
1142
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1143
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
 
 
 
 
 
 
 
 
 
1144
  msgstr ""
1145
 
1146
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
1147
  msgid ""
1148
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1149
  "be added to the selected MailChimp lists until they confirm their email "
1150
  "address."
1151
- msgstr ""
1152
 
1153
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1154
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1155
  msgstr "Cet email a été envoyé automatiquement par le plugin \" MailChimp pour WordPress \""
1156
 
 
 
 
 
1157
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1158
  msgid "MailChimp for WP Form"
1159
  msgstr "MailChimp pour WP Form"
1160
 
1161
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:21
1162
  msgid "Displays one of your MailChimp for WordPress sign-up forms"
1163
- msgstr ""
1164
 
1165
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:43
1166
  msgid ""
1167
  "Please select the sign-up form you'd like to show here in the <a "
1168
  "href=\"%s\">widget settings</a>."
1169
- msgstr ""
1170
 
1171
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:84
1172
  msgid "Form:"
@@ -1180,7 +1302,7 @@ msgstr "Sélectionnez le formulaire pour l'afficher"
1180
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1181
  msgstr "Vous n'avez aucuns formulaires d’inscription. <a href=\"%s\">Créez en un maintenant.</a>"
1182
 
1183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1184
  msgid ""
1185
  "Thank you, your sign-up request was successful! Please check your email "
1186
  "inbox to confirm."
@@ -1191,8 +1313,8 @@ msgid "ID"
1191
  msgstr "ID"
1192
 
1193
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1195
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1196
  msgid "Form"
1197
  msgstr "Formulaire"
1198
 
@@ -1238,10 +1360,6 @@ msgstr "Journaux des abonnés"
1238
  msgid "Email"
1239
  msgstr "Email"
1240
 
1241
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1242
- msgid "List"
1243
- msgstr "Liste"
1244
-
1245
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1246
  msgid "Type"
1247
  msgstr "Type"
@@ -1251,8 +1369,8 @@ msgid "Source"
1251
  msgstr "Source"
1252
 
1253
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1254
- msgid "Extra data"
1255
- msgstr "Donnée supplémentaire "
1256
 
1257
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1258
  msgid "Subscribed"
@@ -1263,7 +1381,7 @@ msgid "Log items deleted."
1263
  msgstr "Entrées de journal supprimées"
1264
 
1265
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1266
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1267
  msgid "Comment"
1268
  msgstr "Commentaire"
1269
 
@@ -1271,44 +1389,44 @@ msgstr "Commentaire"
1271
  msgid "deleted"
1272
  msgstr "Supprimé"
1273
 
1274
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1275
  msgid "Registration"
1276
  msgstr "inscription"
1277
 
1278
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1279
  msgid "MultiSite registration"
1280
  msgstr "Inscription MultiSite"
1281
 
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1283
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1284
  msgid "Checkout"
1285
  msgstr "Vérification"
1286
 
1287
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1288
  msgid "Contact Form 7"
1289
  msgstr "Contact Form 7"
1290
 
1291
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1292
  msgid "bbPress: New Topic"
1293
  msgstr "bbPress: Nouveau sujet"
1294
 
1295
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1296
  msgid "bbPress: New Reply"
1297
  msgstr "bbPress: Nouvelle réponse"
1298
 
1299
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1300
  msgid "Other Form"
1301
  msgstr "Autre formulaire"
1302
 
1303
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1304
  msgid "No subscribe requests found."
1305
  msgstr "Aucune requête d'inscription trouvée."
1306
 
1307
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1308
  msgid "All"
1309
  msgstr "Tous"
1310
 
1311
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1312
  msgid "Checkbox"
1313
  msgstr "Case à cocher"
1314
 
@@ -1384,42 +1502,25 @@ msgstr "Utilisation des formulaires"
1384
  msgid ""
1385
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1386
  "forms."
1387
- msgstr ""
1388
-
1389
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1390
- msgid "WooCommerce checkbox position"
1391
- msgstr ""
1392
-
1393
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1394
- msgid "After the billing details"
1395
- msgstr ""
1396
-
1397
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1398
- msgid "After the additional information"
1399
- msgstr ""
1400
-
1401
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1402
- msgid ""
1403
- "Choose the position for the checkbox in your WooCommerce checkout form."
1404
- msgstr ""
1405
 
1406
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1407
  msgid "Custom label texts"
1408
- msgstr ""
1409
 
1410
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:123
1411
  msgid ""
1412
  "Override the default checkbox label text for any given checkbox using the "
1413
  "fields below."
1414
- msgstr ""
1415
 
1416
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
1417
  msgid "Forms & Settings"
1418
- msgstr ""
1419
 
1420
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
1421
  msgid "CSS Styles Builder"
1422
- msgstr ""
1423
 
1424
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
1425
  msgid "License & API Settings"
@@ -1427,57 +1528,57 @@ msgstr "Paramètres de licence et de l'API"
1427
 
1428
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
1429
  msgid "No lists were found in your MailChimp account."
1430
- msgstr ""
1431
 
1432
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
1433
  msgid "Statistics"
1434
- msgstr ""
1435
 
1436
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
1437
  msgid "Log"
1438
- msgstr ""
1439
 
1440
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:9
1441
  msgid ""
1442
  "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1443
  "email me directly at <a href=\"%s\">support@mc4wp.com</a>."
1444
- msgstr ""
1445
 
1446
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:10
1447
  msgid "Use the fields below to create custom styling rules for your forms."
1448
- msgstr ""
1449
 
1450
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:15
1451
  msgid "Select form to build styles for:"
1452
- msgstr ""
1453
 
1454
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:26
1455
  msgid "Create at least one form first."
1456
- msgstr ""
1457
 
1458
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
1459
  msgid "You need to have JavaScript enabled to see a preview of your form."
1460
- msgstr ""
1461
 
1462
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223
1463
  msgid "Are you sure you want to delete all custom styles for this form?"
1464
- msgstr ""
1465
 
1466
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223
1467
  msgid "Delete Form Styles"
1468
- msgstr ""
1469
 
1470
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
1471
  msgid "Use to delete all styles for this form"
1472
- msgstr ""
1473
 
1474
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:231
1475
  msgid "Build CSS File"
1476
- msgstr ""
1477
 
1478
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1479
  msgid "Sign-Up Forms"
1480
- msgstr ""
1481
 
1482
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1483
  msgid "Create New Form"
@@ -1492,7 +1593,7 @@ msgid ""
1492
  "If you %screated a custom stylesheet%s and want it to be loaded, select "
1493
  "\"custom form styles\". Otherwise, choose the basic formatting styles or one"
1494
  " of the default themes."
1495
- msgstr ""
1496
 
1497
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
1498
  msgid "Select Color"
@@ -1511,19 +1612,19 @@ msgstr "Paramètres par défaut de MailChimp"
1511
  msgid ""
1512
  "The following settings apply to <strong>all</strong> forms but can be "
1513
  "overridden on a per-form basis."
1514
- msgstr ""
1515
 
1516
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
1517
  msgid "Default Form Settings"
1518
- msgstr ""
1519
 
1520
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
1521
  msgid "Default Messages"
1522
- msgstr ""
1523
 
1524
  #. Plugin URI of the plugin/theme
1525
  msgid "https://mc4wp.com/"
1526
- msgstr ""
1527
 
1528
  #. Description of the plugin/theme
1529
  msgid "Adds various sign-up methods to your website."
@@ -1531,8 +1632,8 @@ msgstr "Ajouter différentes méthodes d’enregistrement à votre site internet
1531
 
1532
  #. Author of the plugin/theme
1533
  msgid "Danny van Kooten"
1534
- msgstr ""
1535
 
1536
  #. Author URI of the plugin/theme
1537
  msgid "http://dannyvankooten.com"
1538
- msgstr ""
1
  # Copyright (C) 2014 Danny van Kooten
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
+ # Cedric R <thorin31@gmail.com>, 2014
5
+ # Dario Spagnolo <i@dariospagnolo.org>, 2014
6
+ # fgerber <gerber.francois@gmail.com>, 2014
7
  # François KUSZTOS <kukus___@hotmail.com>, 2014
8
  # fgerber <gerber.francois@gmail.com>, 2014
9
  msgid ""
10
  msgstr ""
11
  "Project-Id-Version: MailChimp for WordPress\n"
12
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
13
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
14
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
15
+ "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
16
  "Language-Team: French (France) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/fr_FR/)\n"
17
  "MIME-Version: 1.0\n"
18
  "Content-Type: text/plain; charset=UTF-8\n"
30
  "X-Textdomain-Support: yes\n"
31
 
32
  #: mailchimp-for-wordpress/includes/class-admin.php:130
33
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
34
  msgid "Settings"
35
  msgstr "Paramètres"
36
 
47
  msgstr "Réglages MailChimp"
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:161
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
51
  msgid "Checkboxes"
52
  msgstr "Cases à cocher"
53
 
54
  #: mailchimp-for-wordpress/includes/class-admin.php:162
55
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
56
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
57
  msgid "Forms"
58
  msgstr "Formulaires"
59
 
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
61
+ msgid "This option is only available in MailChimp for WordPress Pro."
62
+ msgstr ""
63
+
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
66
  msgid "Comment form"
67
  msgstr "Formulaire de commentaires"
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
71
  msgid "Registration form"
72
  msgstr "Formulaire d'inscription"
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
76
  msgid "MultiSite forms"
77
  msgstr "Formulaires multisite"
78
 
79
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
80
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
81
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
82
  msgid "BuddyPress registration"
83
  msgstr "Inscription à BuddyPress"
84
 
85
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
86
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
87
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
89
+ msgid "%s checkout"
90
+ msgstr "%s achat"
 
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
94
  msgid "Renewed MailChimp cache."
95
  msgstr "Renouvellement du cache MailChimp"
96
 
97
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
98
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
99
  msgid "Failed to renew MailChimp cache - please try again later."
100
  msgstr "Le renouvellement du cache MailChimp a échoué - veuillez ressayer plus-tard."
101
 
102
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
103
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
104
  msgid "An EMAIL field. Example: <code>%s</code>"
105
  msgstr "Un champ EMAIL. Exemple : <code>%s</code>"
106
 
107
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
108
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
109
  msgid "A submit button. Example: <code>%s</code>"
110
  msgstr "Un bouton Envoyer. Exemple : <code>%s</code>"
111
 
112
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
113
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
114
  msgid "Sign Up"
115
  msgstr "Abonnez-vous"
116
 
117
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
118
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
119
  msgid "A '%s' field"
120
  msgstr "Un champ '%s'"
121
 
122
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
123
  msgid "Please select at least one list to subscribe to."
124
  msgstr "Merci de sélectionner au moins une liste d'abonnement."
125
 
148
  msgstr "Vous pouvez éditer votre formulaire d'enregistrement dans le %sMailChimp for WordPress form settings%s."
149
 
150
  #: mailchimp-for-wordpress/includes/functions/general.php:21
151
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
152
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
153
  msgid "Email address"
154
  msgstr "Adresse de courrier électronique"
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:22
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
158
  msgid "Your email address"
159
  msgstr "Votre adresse de courrier électronique"
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:23
162
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
163
  msgid "Sign up"
164
  msgstr "Abonnez-vous"
165
 
166
  #: mailchimp-for-wordpress/includes/functions/general.php:30
167
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
168
  msgid "Sign me up for the newsletter!"
169
  msgstr "Inscrivez-vous pour recevoir notre newsletter!"
170
 
171
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
172
  msgid ""
173
  "Thank you, your sign-up request was successful! Please check your e-mail "
174
  "inbox."
175
  msgstr "Merci, votre enregistrement est un succès! Veuillez vérifier votre boite e-mail."
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
179
  msgid "Oops. Something went wrong. Please try again later."
180
  msgstr "Oops, Une erreur s'est produite. Veuillez réessayer plus-tard "
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
184
  msgid "Please provide a valid email address."
185
  msgstr "Veuillez fournir une adresse email valide."
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
189
  msgid "Given email address is already subscribed, thank you!"
190
  msgstr "L'adresse email fourni est déjà inscrit, merci !"
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
194
  msgid "Please complete the CAPTCHA."
195
  msgstr "Veuillez retranscrire le code CAPTCHA"
196
 
197
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
198
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
199
  msgid "Please fill in the required fields."
200
  msgstr "Veuillez remplir les champs obligatoires."
201
 
263
  msgid "No"
264
  msgstr "Non"
265
 
266
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
267
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
270
  msgid "MailChimp for WordPress - Error"
271
  msgstr "MailChimp pour Wordpress - Erreur"
272
 
273
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
274
  msgid ""
275
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
276
  "settings</a>."
277
+ msgstr "Choisissez une liste à laquelle vous inscrire dans les <a href=\"%s\">paramètres de case à cocher</a>."
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
281
  msgid "This message is only visible to administrators for debugging purposes."
282
  msgstr "Ce message n'est visible que pour les administrateurs, à des fins de débuggage."
283
 
284
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
285
  msgid ""
286
  "The MailChimp server returned the following error message as a response to "
287
  "our sign-up request:"
288
+ msgstr "Le serveur de MailChimp a renvoyé le message d'erreur suivant en réponse à votre demande d'inscription :"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
291
  msgid "This is the data that was sent to MailChimp:"
292
+ msgstr "Voici les données qui ont été envoyées à MailChimp :"
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
295
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
296
  msgid "Email address:"
297
  msgstr "Adresse email : "
298
 
299
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
300
  msgid "Merge variables:"
301
  msgstr "Fusionner les variables : "
302
 
345
  "The table below shows your MailChimp lists data. If you applied changes to "
346
  "your MailChimp lists, please use the following button to renew your cached "
347
  "data."
348
+ msgstr "Le tableau ci-dessous affiche les données de vos listes MailChimp. Si vous avez apporté des modifications à vos listes MailChimp, merci de cliquer sur le bouton suivant pour rafraîchir les données en mémoire."
349
 
350
  #: mailchimp-for-wordpress/includes/views/api-settings.php:54
351
  #: mailchimp-for-wordpress/includes/views/api-settings.php:125
352
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
353
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
354
  msgid "Renew MailChimp lists"
355
+ msgstr "Rafraîchir les listes MailChimp"
356
 
357
  #: mailchimp-for-wordpress/includes/views/api-settings.php:112
358
  msgid "No lists were found in your MailChimp account"
368
  msgid ""
369
  "To use sign-up checkboxes, select at least one list and one form to add the "
370
  "checkbox to."
371
+ msgstr "Pour utiliser les cases à cocher d'inscription, sélectionner au moins une liste et un formulaire auquel ajouter la case à cocher."
372
 
373
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
374
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
380
  msgid ""
381
  "If you want to use sign-up checkboxes, select at least one MailChimp list to"
382
  " subscribe people to."
383
+ msgstr "Si vous voulez utiliser les cases à cocher d'inscription, sélectionner au moins une liste MailChimp à laquelle inscrire des personnes."
384
 
385
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
386
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
392
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
393
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
394
  msgid "No lists found, %sare you connected to MailChimp?%s"
395
+ msgstr "Pas de listes trouvées,%sêtes vous sure d'avoir connecté MailChimp ?%s"
396
 
397
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
398
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
399
  msgid ""
400
  "Select the list(s) to which people who check the checkbox should be "
401
  "subscribed."
402
+ msgstr "Sélectionnez la liste(s) à laquelle les utilisateurs qui cochent la case seront inscrits."
403
 
404
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
405
  #: mailchimp-for-wordpress/includes/views/form-settings.php:109
432
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
433
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
434
  msgid "Selecting a form will automatically add the sign-up checkbox to it."
435
+ msgstr "La sélection d'un formulaire ajoute automatiquement la case à cocher d'inscription à celui-ci."
436
 
437
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
438
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:91
443
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:94
444
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:134
445
  msgid "HTML tags like %s are allowed in the label text."
446
+ msgstr "Les balises HTML telles que %s sont autorisées dans le texte de l'étiquette."
447
 
448
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
449
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:98
460
  msgid "Select \"yes\" if the checkbox appears in a weird place."
461
  msgstr "Sélectionner \"oui\" si la case à cocher apparaît à un endroit bizarre."
462
 
463
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
464
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
465
+ msgid "WooCommerce checkbox position"
466
+ msgstr "Position de la case à cocher WooCommerce"
467
+
468
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
469
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
470
+ msgid "After the billing details"
471
+ msgstr "Après les informations de facturation"
472
+
473
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
474
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
475
+ msgid "After the additional information"
476
+ msgstr "Après les informations complémentaires"
477
+
478
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
479
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
480
+ msgid ""
481
+ "Choose the position for the checkbox in your WooCommerce checkout form."
482
+ msgstr "Choisissez la position de votre case à cocher dans votre formulaire de paiement WooCommerce"
483
+
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
485
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
486
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
487
  msgid "Form Settings"
488
  msgstr "Paramètres du formulaire"
500
  #: mailchimp-for-wordpress/includes/views/form-settings.php:24
501
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
502
  msgid "Load form styles (CSS)?"
503
+ msgstr "Charger le style des formulaires (CSS) ?"
504
 
505
  #: mailchimp-for-wordpress/includes/views/form-settings.php:28
506
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
507
  msgid "Yes, load basic form styles"
508
+ msgstr "Oui, charger un style minimal pour les formulaires"
509
+
510
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
511
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
512
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
513
+ msgid "(PRO ONLY)"
514
+ msgstr "(Seulement pour les pros)"
515
 
516
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
517
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
518
  msgid "Yes, load my custom form styles"
519
+ msgstr "Oui, charger mes styles de formulaire personnalisés"
520
 
521
  #: mailchimp-for-wordpress/includes/views/form-settings.php:30
522
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
523
  msgid "Yes, load default form theme"
524
+ msgstr "Oui, charger le thème de formulaire par défaut"
525
 
526
  #: mailchimp-for-wordpress/includes/views/form-settings.php:31
527
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
562
  #: mailchimp-for-wordpress/includes/views/form-settings.php:45
563
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
564
  msgid "Lists this form subscribes to"
565
+ msgstr "Listes auxquelles ce formulaire permet de s'inscrire"
566
 
567
  #: mailchimp-for-wordpress/includes/views/form-settings.php:63
568
  msgid ""
575
  msgstr "Formulaire de balisage"
576
 
577
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
578
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
579
  msgid "Your form is missing the following (required) form fields:"
580
+ msgstr "Il manque à votre formulaire les champs obligatoires suivants :"
581
 
582
  #: mailchimp-for-wordpress/includes/views/form-settings.php:92
583
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:87
600
  msgid ""
601
  "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
602
  "succeeds (only when double opt-in is disabled)."
603
+ msgstr "Choisissez \"oui\" si vous voulez envoyer à vos listes un email de bienvenue suite à une inscription réussie (uniquement si la double validation est désactivée)."
604
 
605
  #: mailchimp-for-wordpress/includes/views/form-settings.php:133
606
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
614
  msgid ""
615
  "Select \"yes\" if you want to update existing subscribers (instead of "
616
  "showing the \"already subscribed\" message)."
617
+ msgstr "Choisissez \"oui\" si vous voulez mettre à jour les inscrits déjà existants (au lieu d'afficher le message \"vous êtes déjà inscrit\")."
618
 
619
  #: mailchimp-for-wordpress/includes/views/form-settings.php:143
620
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
629
  "Select \"yes\" if you want to replace the interest groups with the groups "
630
  "provided instead of adding the provided groups to the member's interest "
631
  "groups (only when updating a subscriber)."
632
+ msgstr "Sélectionnez \\\"oui\\\" si vous voulez remplacer les groupes d'intérêt avec les groupes prévus au lieu d'ajouter les groupes prévus aux groupes d'intérêt du membre (uniquement lors de la mise à jour d'un abonné)."
633
 
634
  #: mailchimp-for-wordpress/includes/views/form-settings.php:158
635
  msgid "Form Settings & Messages"
645
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
646
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
647
  msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
648
+ msgstr "Sélectionnez \"oui\" si vous voulez utiliser AJAX (JavaScript) pour soumettre des formulaires."
649
 
650
  #: mailchimp-for-wordpress/includes/views/form-settings.php:176
651
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
707
  msgid "HTML tags like %s are allowed in the message fields."
708
  msgstr "Les balises HTML tel que %s sont acceptées dans les champs."
709
 
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
711
+ msgid "Building your sign-up form"
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
715
+ msgid ""
716
+ "At a minimum, your form should include just an %s field and a submit button."
717
+ msgstr ""
718
+
719
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
720
+ msgid ""
721
+ "Add more form fields if your selected lists require more fields. Field names"
722
+ " should match the field tags of the selected lists. Use the \"Add a new "
723
+ "field\" tool to have the HTML generated for you."
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
727
+ msgid "Form Styling"
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
731
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
732
+ msgstr ""
733
+
734
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
735
+ msgid ""
736
+ "You can add the CSS rules to your theme stylesheet using the <a "
737
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
738
+ " plugin like %s"
739
+ msgstr ""
740
+
741
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
742
+ msgid ""
743
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
744
+ "selectors you can use to target the different form elements."
745
+ msgstr ""
746
+
747
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
748
+ msgid ""
749
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
750
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
751
+ "lets you customize form styles without writing any code."
752
+ msgstr ""
753
+
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
755
  msgid "Form variables"
756
  msgstr "Variables de formulaire"
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
759
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
760
  msgid "Use the following variables to add some dynamic content to your form."
761
+ msgstr "Utilisez les variables suivantes pour ajouter du contenu dynamique à votre formulaire."
762
 
763
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
764
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
765
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
770
+ msgid "Replaced with the form response (error or success messages)."
771
+ msgstr "Remplacer avec un message de réponse (message d'erreur ou de réussite)."
772
 
773
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
774
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
775
+ msgid "Replaced with a captcha field."
776
+ msgstr "Remplacé par un champ captcha."
777
 
778
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
780
+ msgid "Replaced with the number of subscribers on the selected list(s)"
781
+ msgstr "Remplacé par le nombre d'abonnés de la liste sélectionnée"
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
785
+ msgid "Replaced with the current site language, eg: %s"
786
+ msgstr "Remplacé par la langue du site en cours, par exemple : %s"
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
790
+ msgid "Replaced with the visitor's IP address"
791
+ msgstr "Remplacé par l&#39;adresse IP du visiteur"
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
795
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
796
+ msgstr "Remplacé par la date actuelle (yyyy/mm/dd par exemple: %s)"
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
800
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
801
+ msgstr "Remplacé par l'heure actuelle (hh:mm:ss par exemple: %s)"
 
 
802
 
803
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
804
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
805
+ msgid ""
806
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
807
+ "in user)"
808
+ msgstr "Remplacé par l'e-mail de l'utilisateur connecté (ou rien, s'il n'y a pas d'utilisateur connecté)"
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
812
+ msgid "First name of the current user"
813
+ msgstr "Prénom de l'utilisateur actif"
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
817
+ msgid "Last name of the current user"
818
+ msgstr "Nom de l'utilisateur actif"
819
 
820
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
821
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
822
+ msgid "Current user ID"
823
+ msgstr "Identifiant de l'utilisateur actif"
824
+
825
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
826
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
827
  msgid "Current URL"
828
  msgstr "URL active"
829
 
903
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:61
904
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
905
  msgid "Generated HTML"
906
+ msgstr "HTML généré"
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:68
909
  msgid "Select at least one list first."
911
 
912
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
913
  msgid ""
914
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
915
+ "translated in your language or do you spot errors with the current "
916
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
917
+ "translation project and click \"help translate\"</a>."
918
+ msgstr ""
919
+
920
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
921
+ msgid ""
922
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
923
  "now</a> for an even better plugin, you will love it."
924
  msgstr "Ce plugin vous plait ? <a href=\"%s\"> Passez maintenant à la version pro de MailChimp for WordPress Pro</a> pour avoir un plugin encore plus puissant, vous allez l'adorer."
925
 
926
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
927
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
928
  msgid ""
929
  "This plugin is not developed by or affiliated with MailChimp in any way."
930
  msgstr "Ce plugin n'est aucunement développé ou affilié à la marque MailChimp déposée par le groupe \"The Rocket Science\"."
937
  msgid ""
938
  "Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
939
  "use the <a href=\"%s\">support forums</a> on WordPress.org."
940
+ msgstr "Assurez-vous de regarder la <a href=\\\"%s\\\">frequently asked questions</a> ou utiliser le support <a href=\\\"%s\\\">support forums</a> sur WordPress.org."
941
 
942
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
943
  msgid ""
944
  "If you need priority support, please <a href=\"%s\">upgrade to the premium "
945
  "version</a>."
946
+ msgstr "Si vous avez besoin d'un support prioritaire, veuillez <a href=\\\"%s\\\">passer à la version Premium</a>."
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
949
  msgid "Show a token of your appreciation"
950
+ msgstr "Afficher un jeton de votre appréciation"
951
 
952
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
953
+ msgid "Upgrade to MailChimp for WordPress Pro"
954
  msgstr ""
955
 
956
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
957
+ msgid "Leave a %s plugin review on WordPress.org"
958
+ msgstr "Laisser un avis sur le plugin %s sur WordPress.org"
959
+
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
962
  msgstr "J'utilise MailChimp pour WordPress par @DannyvanKooten - C'est top !"
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
965
  msgid "Tweet about MailChimp for WordPress"
966
  msgstr "Tweeter au sujet de MailChimp pour Wordpress"
967
 
968
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
969
  msgid ""
970
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
971
+ "page</a>."
972
  msgstr ""
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
975
  msgid "Vote \"works\" on the WordPress.org plugin page"
976
  msgstr "Donner l'évaluation \"ça fonctionne\" sur la page WordPress.org du plugin."
977
 
978
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
979
+ msgid "About the developer"
980
+ msgstr ""
981
+
982
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
983
  msgid ""
984
  "This plugin has an even better premium version, I am sure you will love it."
985
+ msgstr "Ce plugin a même une version Premium, je suis sûr que vous allez l'adorer."
986
 
987
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
988
  msgid ""
989
  "Pro features include better and multiple forms, advanced and easy form "
990
  "styling, more default themes, detailed statistics and priority support."
991
+ msgstr "Pro caractéristiques comprennent de meilleurs et multiples formulaires, des styles de formulaires avancées et faciles, plus de thèmes par défaut, des statistiques détaillées et une assistance prioritaire."
992
 
993
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
994
  msgid "More information about MailChimp for WP Pro"
995
+ msgstr "Plus d'information au sujet de MailChimp for WP Pro"
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
998
  msgid "Documentation"
999
  msgstr "Documentation"
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
1002
  msgid "Save Form"
1003
  msgstr "Enregistrer le formulaire"
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1006
  msgid "Update Form"
1007
  msgstr "Mettre à jour le formulaire"
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1010
  msgid "Back to general form settings"
1011
  msgstr "Revenir aux paramètres généraux du formulaire"
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1014
  msgid "Form updated."
1015
  msgstr "Le formulaire a été mis à jour."
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1018
  msgid "Form saved."
1019
  msgstr "Le formulaire a été enregistré."
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1022
  msgid "Optional Settings"
1023
  msgstr "Paramètres optionnels"
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1026
  msgid "Form Variables"
1027
  msgstr "Variables de formulaire."
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1030
  msgid "MailChimp & License"
1031
+ msgstr "MailChimp & Licence"
1032
 
1033
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1034
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1035
  msgid "Reports"
1036
  msgstr "Rapports"
1037
 
1038
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1039
  msgid ""
1040
  "Please make sure the plugin is connected to MailChimp. <a "
1041
  "href=\"%s\">Provide a valid API key.</a>"
1042
  msgstr "Veuillez-vous assurer que le plugin est bien connecté à MailChimp. <a href=\"%s\">fournissez une clef d'API valide.</a>"
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1045
  msgid "End date can't be before the start date"
1046
  msgstr "La date de fin ne peut plus ancienne que la date de début."
1047
 
1048
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1049
  msgid ""
1050
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1051
  "page."
1052
+ msgstr "Vous avez désactivé la journalisation en utilisant le filtre %s. Réactivez le pour pouvoir utiliser la page des Rapports"
1053
 
1054
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1055
  msgid ""
1056
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1057
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1058
  "it now</a> to prevent problems"
1059
+ msgstr "<strong>Bienvenu à MailChimp for WordPress Pro!</strong> Nous avons transféré les paramètres que vous avez effectué dans la version gratuite, veuillez maintenant <a href=\\\"%s\\\">la désactiver maintenant</a> pour éviter des problèmes."
1060
 
1061
  #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:319
1062
  msgid ""
1063
  "Couldn't create the stylesheet. Manually add the generated CSS to your theme"
1064
  " stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
1065
+ msgstr "Impossible de créer le style CSS. Ajoutez manuellement le CSS généré à celui de votre thème en utilisant le %sTheme Editor%s ou utilisez le FTP et editez <em>%s</em>."
1066
 
1067
  #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:320
1068
  msgid "%sShow generated CSS%s"
1069
+ msgstr "%sMontrer le CSS généré%s"
1070
 
1071
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1072
  msgid ""
1073
  "To apply these styles on your website, select \"load custom form styles\" in"
1074
  " the %sform settings%s"
1075
+ msgstr "Pour appliquer ces styles sur votre site, selectionnez \\\"charger les styles de formulaires personnalisés\\\" dans %sparamètres des formulaires%s"
1076
 
1077
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1078
  msgid "The %sCSS Stylesheet%s has been created."
1079
+ msgstr "La %sfeuille de styles CSS%s a été créée."
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:152
1082
  msgid "I know. Don't bug me."
1112
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1113
  msgstr "Vous avez atteint votre limite d'activation . Vous devez <a href=\"%s\"> réinitialiser </a> ou <a href=\"%s\"> mettre à jour votre </a> licence pour utiliser le plugin sur ce site ."
1114
 
1115
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1116
  msgid ""
1117
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1118
+ "you want to use it again."
1119
+ msgstr ""
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1122
  msgid "Failed to activate your license, your license key seems to be invalid."
1123
  msgstr "L'activation de votre licence a échoué , votre clé de licence semble être invalide ."
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1126
  msgid "Your %s license has been deactivated."
1127
  msgstr "Votre %s licence a été desactivé"
1128
 
1129
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1130
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1131
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1132
+ msgid ""
1133
+ "Your plugin license has expired. You will no longer have access to plugin "
1134
+ "updates unless you <a href=\"%s\">renew your license</a>."
1135
+ msgstr ""
1136
+
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1138
  msgid "Failed to deactivate your %s license."
1139
  msgstr "La désactivation de votre %s licence a echoué"
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1142
  msgid "Request error: \"%s\""
1143
  msgstr "La demande a echoué: %s"
1144
 
1145
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1146
  msgid "%s: License Settings"
1147
  msgstr "%s: Paramètres de Licence"
1148
 
1177
  msgstr "vous recevez des mises à jour"
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ msgid "EXPIRED"
1181
+ msgstr ""
1182
 
1183
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
  msgid "you are <strong>not</strong> receiving updates."
1186
  msgstr "vous ne recevez <strong>pas</strong> de mise à jour"
1187
 
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1189
+ msgid "INACTIVE"
1190
+ msgstr "INACTIF"
1191
+
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1193
  msgid "Toggle license status"
1194
  msgstr "Basculez l'état de la License "
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1197
  msgid "Deactivate License"
1198
  msgstr "Désactiver la licence"
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1201
  msgid ""
1202
  "(deactivate your license so you can activate it on another WordPress site)"
1203
  msgstr "(En désactivant votre License, vous pourrez réutiliser votre licence sur un autre site wordpress)"
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1206
  msgid "Activate License"
1207
  msgstr "Activer la licence"
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1210
  msgid "Please enter a license key in the field below first."
1211
  msgstr "Entrez une clef de licence dans le champs ci-dessous"
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1214
  msgid "License Key"
1215
  msgstr "Clef de licence"
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1218
  msgid "Paste your license key here, as found in the email receipt."
1219
  msgstr "Collez votre clef de licence que vous avez reçus par email ici."
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1222
  msgid "You defined your license key using the %s PHP constant."
1223
  msgstr "Utilisez la constante PHP %s pour définir votre clef de licence."
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1226
  msgid "Your %s license will expire on %s."
1227
  msgstr "Votre %s licence expirera le %s"
1228
 
1229
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1230
  msgid "%sRenew your license now%s."
1231
  msgstr "%s Renouvelez votre licence dès maintenant%s"
1232
 
1233
  #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:241
1234
  msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
1235
+ msgstr "<strong>Erreur :</strong> Veuillez spécifier un ID de formulaire. Exemple: %s."
1236
 
1237
  #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:255
1238
  msgid ""
1239
  "<strong>Error:</strong> Sign-up form not found. Please check if you used the"
1240
  " correct form ID."
1241
+ msgstr "<strong>Erreur :</strong> Formulaire d'inscription non trouvé. Veuillez vérifier que vous utilisez le bon ID de formulaire."
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1244
+ msgid "New MailChimp Sign-Up"
1245
  msgstr ""
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1248
  msgid "New Sign-Up"
1249
  msgstr "Nouvelle Inscription"
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1252
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1253
+ msgstr "<strong>%s</strong> s'inscrire à %s sur %s en utilisant le formulaire \\\"%s\\\"."
1254
+
1255
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1256
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1257
+ msgid "List"
1258
+ msgstr "Liste"
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1261
+ msgid "Other fields"
1262
  msgstr ""
1263
 
1264
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1265
  msgid ""
1266
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1267
  "be added to the selected MailChimp lists until they confirm their email "
1268
  "address."
1269
+ msgstr "Notez que vous avez activé le double validation pour le formulaire \\\"%s\\\". L'utilisateur de sera pas ajouté à la liste MailChimp sélectionnée jusqu'à ce qu'il confirme son adresse e-mail."
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1272
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1273
  msgstr "Cet email a été envoyé automatiquement par le plugin \" MailChimp pour WordPress \""
1274
 
1275
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1276
+ msgid "IP Address"
1277
+ msgstr ""
1278
+
1279
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1280
  msgid "MailChimp for WP Form"
1281
  msgstr "MailChimp pour WP Form"
1282
 
1283
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:21
1284
  msgid "Displays one of your MailChimp for WordPress sign-up forms"
1285
+ msgstr "Affichez un de vos formulaire d'inscription MailChimp for WordPress"
1286
 
1287
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:43
1288
  msgid ""
1289
  "Please select the sign-up form you'd like to show here in the <a "
1290
  "href=\"%s\">widget settings</a>."
1291
+ msgstr "Veuillez selectionner le formulaire d'inscription que vous souhaitez montrer ici dans les <a href=\\\"%s\\\">paramètres de widgets</a>."
1292
 
1293
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:84
1294
  msgid "Form:"
1302
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1303
  msgstr "Vous n'avez aucuns formulaires d’inscription. <a href=\"%s\">Créez en un maintenant.</a>"
1304
 
1305
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1306
  msgid ""
1307
  "Thank you, your sign-up request was successful! Please check your email "
1308
  "inbox to confirm."
1313
  msgstr "ID"
1314
 
1315
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1316
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1317
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1318
  msgid "Form"
1319
  msgstr "Formulaire"
1320
 
1360
  msgid "Email"
1361
  msgstr "Email"
1362
 
 
 
 
 
1363
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1364
  msgid "Type"
1365
  msgstr "Type"
1369
  msgstr "Source"
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1372
+ msgid "Data"
1373
+ msgstr ""
1374
 
1375
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgid "Subscribed"
1381
  msgstr "Entrées de journal supprimées"
1382
 
1383
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1384
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1385
  msgid "Comment"
1386
  msgstr "Commentaire"
1387
 
1389
  msgid "deleted"
1390
  msgstr "Supprimé"
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1393
  msgid "Registration"
1394
  msgstr "inscription"
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1397
  msgid "MultiSite registration"
1398
  msgstr "Inscription MultiSite"
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1402
  msgid "Checkout"
1403
  msgstr "Vérification"
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1406
  msgid "Contact Form 7"
1407
  msgstr "Contact Form 7"
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1410
  msgid "bbPress: New Topic"
1411
  msgstr "bbPress: Nouveau sujet"
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1414
  msgid "bbPress: New Reply"
1415
  msgstr "bbPress: Nouvelle réponse"
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1418
  msgid "Other Form"
1419
  msgstr "Autre formulaire"
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1422
  msgid "No subscribe requests found."
1423
  msgstr "Aucune requête d'inscription trouvée."
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1426
  msgid "All"
1427
  msgstr "Tous"
1428
 
1429
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1430
  msgid "Checkbox"
1431
  msgstr "Case à cocher"
1432
 
1502
  msgid ""
1503
  "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1504
  "forms."
1505
+ msgstr "Utiliser le champ %s dans Contact Form 7 pour ajouter un case à cocher d'inscription dans vos formulaires CF7."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1506
 
1507
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1508
  msgid "Custom label texts"
1509
+ msgstr "Texte de la case à cocher personnalisé"
1510
 
1511
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:123
1512
  msgid ""
1513
  "Override the default checkbox label text for any given checkbox using the "
1514
  "fields below."
1515
+ msgstr "Passer outre le texte par défaut des cases à cocher en utilisant le champs ci-dessous."
1516
 
1517
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
1518
  msgid "Forms & Settings"
1519
+ msgstr "Formulaires et Réglages"
1520
 
1521
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
1522
  msgid "CSS Styles Builder"
1523
+ msgstr "Générateur de Styles CSS"
1524
 
1525
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
1526
  msgid "License & API Settings"
1528
 
1529
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
1530
  msgid "No lists were found in your MailChimp account."
1531
+ msgstr "Pas de listes trouvées dans votre compte MailChimp"
1532
 
1533
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
1534
  msgid "Statistics"
1535
+ msgstr "Statistiques"
1536
 
1537
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
1538
  msgid "Log"
1539
+ msgstr "Journal"
1540
 
1541
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:9
1542
  msgid ""
1543
  "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1544
  "email me directly at <a href=\"%s\">support@mc4wp.com</a>."
1545
+ msgstr "Besoin d'aide ? Regardez sur <a href=\\\"%s\\\"> la documentation du plugin</a> envoyez moi un mail sur <a href=\\\"%s\\\">support@mc4wp.com</a>."
1546
 
1547
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:10
1548
  msgid "Use the fields below to create custom styling rules for your forms."
1549
+ msgstr "Utilisez les champs ci-dessous pour créer des règles de style personnalisée pour vos formulaires."
1550
 
1551
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:15
1552
  msgid "Select form to build styles for:"
1553
+ msgstr "Sélectionnez le formulaire pour créer les styles :"
1554
 
1555
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:26
1556
  msgid "Create at least one form first."
1557
+ msgstr "Créez au moins un formulaire en premier."
1558
 
1559
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
1560
  msgid "You need to have JavaScript enabled to see a preview of your form."
1561
+ msgstr "Vous avez besoin du JavaScript d'activé pour voir les prévisualisations de votre formulaire."
1562
 
1563
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223
1564
  msgid "Are you sure you want to delete all custom styles for this form?"
1565
+ msgstr "Êtes-vous sûre que vous voulez supprimer tous les styles personnalisés pour ce formulaire ?"
1566
 
1567
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223
1568
  msgid "Delete Form Styles"
1569
+ msgstr "Supprimer les styles du formulaire"
1570
 
1571
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
1572
  msgid "Use to delete all styles for this form"
1573
+ msgstr "Permet de supprimer tous les styles pour ce formulaire"
1574
 
1575
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:231
1576
  msgid "Build CSS File"
1577
+ msgstr "Créer le fichier CSS"
1578
 
1579
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1580
  msgid "Sign-Up Forms"
1581
+ msgstr "Formulaires d'inscription"
1582
 
1583
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1584
  msgid "Create New Form"
1593
  "If you %screated a custom stylesheet%s and want it to be loaded, select "
1594
  "\"custom form styles\". Otherwise, choose the basic formatting styles or one"
1595
  " of the default themes."
1596
+ msgstr "Si vou %scréez une feuille de styles CSS personnalisée%s et voulez la charger, sélectionnez \\\"Styles de formulaire personnalisées\\\". Autrement, choisissez les styles basic de formatage ou l'un des thèmes par défaut."
1597
 
1598
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
1599
  msgid "Select Color"
1612
  msgid ""
1613
  "The following settings apply to <strong>all</strong> forms but can be "
1614
  "overridden on a per-form basis."
1615
+ msgstr "Les paramètres suivants s'appliquent à <strong>tous</ strong> les formulaires, mais peuvent être remplacés sur la base d'un pré-formulaire."
1616
 
1617
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
1618
  msgid "Default Form Settings"
1619
+ msgstr "Paramètre par défaut des formulaires"
1620
 
1621
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
1622
  msgid "Default Messages"
1623
+ msgstr "Messages par défaut"
1624
 
1625
  #. Plugin URI of the plugin/theme
1626
  msgid "https://mc4wp.com/"
1627
+ msgstr "https://mc4wp.com/"
1628
 
1629
  #. Description of the plugin/theme
1630
  msgid "Adds various sign-up methods to your website."
1632
 
1633
  #. Author of the plugin/theme
1634
  msgid "Danny van Kooten"
1635
+ msgstr "Danny van Kooten"
1636
 
1637
  #. Author URI of the plugin/theme
1638
  msgid "http://dannyvankooten.com"
1639
+ msgstr "http://dannyvankooten.com"
languages/mailchimp-for-wp-gl_ES.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Galician (Spain) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/gl_ES/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Galician (Spain) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/gl_ES/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-he_IL.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/he_IL/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/he_IL/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-hu_HU.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-11-24 09:53+0000\n"
11
- "Last-Translator: Németh Balázs <nb0000@gmail.com>\n"
12
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "Beállítások"
32
 
@@ -43,80 +43,79 @@ msgid "MailChimp Settings"
43
  msgstr "MailChimp beállítások"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "Jelölőnégyzetek"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Űrlapok"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Hozzászólás űrlap"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Regisztréciós űrlap"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "MultiSite űrlap"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "BuddyPress regisztráció"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr "(CSAK a PRO-ban)"
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr "MailChimp gyorstár frissítve."
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr "Nem sikerült a MailChimp gyorsítótár frissítése - kérjük, próbálja később."
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr "Egy EMAIL mező. Például: <code>%s</code>"
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr "Egy elküldés gomb. Például: <code>%s</code>"
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr "Feliratkozás"
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr "Egy „%s” mező"
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr "MailChimp hiba:"
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr "Legalább egy listát válasszon ki a feliratkozáshoz."
122
 
@@ -145,53 +144,54 @@ msgid ""
145
  msgstr "A feliratkozás űrlap a %sMailChimp for WordPress beállításai%snál módosítható."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr "Emailcím"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr "Az emailcímed"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr "Feliratkozás"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Irj fel a hírlevél címlistára!"
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Köszönjük. Ön sikeresen feliratkozott. Nézze meg a bejövő leveleit!"
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Hoppá! Valami nem működött. Kérjük, próbálja újra később!"
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr "Kérjük, érvényes emailcímet adjon meg."
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Ez az emailcím már feliratkozott. Köszönjük."
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Kérjük, töltse ki a CAPTCHA-t."
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr "Kérjük, töltse ki a kötelező mezőket."
197
 
@@ -259,39 +259,40 @@ msgstr "Igen"
259
  msgid "No"
260
  msgstr "Nem"
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp for WordPress - Hiba"
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Kérjük válaszon egy listát a feliratkozáshoz <a href=\"%s\">jelölőnégyzet beállítások</a>nál."
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Ezt az üzenetet csak adminisztrátorok látják hibajavítási célzattal."
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "A MailChimp kiszolgáló az alábbi hibával válaszolt a feliratkozási kérésre:"
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Ez az adat lett elküldve a MailChimp felé:"
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr "Emailcím:"
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr "Változók egyesítése:"
297
 
@@ -455,8 +456,29 @@ msgstr "Kell némi alap CSS?"
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Válassza az „Igen”-t, ha a jelölő négyzet fura helyen jelenik meg."
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr "Űrlap beállítások"
@@ -481,6 +503,12 @@ msgstr "Űrlap stílusok betöltése (CSS)?"
481
  msgid "Yes, load basic form styles"
482
  msgstr "Igen, alap űrlap stílusok betöltése"
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -543,7 +571,7 @@ msgid "Form mark-up"
543
  msgstr "Űrlap kód"
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr "Hiányoznak az űrlapról a következő (kötelező) mezők:"
549
 
@@ -675,74 +703,123 @@ msgstr "Általános hiba üzenet"
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr "HTML elemek (például: %s) lehetnek az üzenet mezőkben."
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr "Űrlap változók"
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr "Az alábbi változókkal dinamikus tartalom kerülhet az űrlapba."
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
689
  msgid "Replaced with the form response (error or success messages)."
690
  msgstr "Lecserélve az űrlap válasz üzenetére (hiba vagy siker üzenet)."
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
  msgid "Replaced with a captcha field."
695
  msgstr "Lecserélve egy captcha mezőre."
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
  msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr "Lecserélve a feliratkozók számára a kijelölt listá(k)ban."
701
 
702
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
  msgid "Replaced with the current site language, eg: %s"
705
  msgstr "Lecserélve a weboldal aktuális nyelvére, pl.: %s"
706
 
707
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
  msgid "Replaced with the visitor's IP address"
710
  msgstr "Lecserélve a látogató IP címére."
711
 
712
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr "Lecserélve az aktuális dátumra (éééé/hh/nn, pl.: %s)."
716
 
717
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr "Lecserélve az aktuális időre (óó:pp:mm, pl.: %s)."
721
 
722
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
  msgid ""
725
  "Replaced with the logged in user's email (or nothing, if there is no logged "
726
  "in user)"
727
  msgstr "Lecserélve a belépett felhasználó emailcímére (vagy üres lesz, ha nincs belépett felhasználó)."
728
 
729
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
  msgid "First name of the current user"
732
  msgstr "Aktuális felhasználó keresztneve"
733
 
734
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
  msgid "Last name of the current user"
737
  msgstr "Aktuális felhasználó vezetékneve"
738
 
739
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
  msgid "Current user ID"
742
  msgstr "Aktuális felhasználó azonosító"
743
 
744
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
746
  msgid "Current URL"
747
  msgstr "Aktuális URL"
748
 
@@ -830,11 +907,20 @@ msgstr "Előbb válasszon egy listát!"
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
 
 
 
 
 
 
 
 
833
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
  "now</a> for an even better plugin, you will love it."
835
  msgstr "Tetszik a bővítmény? <a href=\"%s\">Frissítsen a MailChimp for WordPress Pro-re most</a> egy még jobb bővítményért, imádni fogja."
836
 
837
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
838
  msgid ""
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
  msgstr "Ezt a bővítményt nem a MailChimp fejleszti, és nem áll vele közvetlen kapcsolatban."
@@ -860,27 +946,35 @@ msgid "Show a token of your appreciation"
860
  msgstr "Adja jelét a megbecsülésének"
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
 
 
 
 
863
  msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr "Értékelje a bővítményt %s a WordPress.org oldalon!"
865
 
866
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
  msgstr "Én is használom @DannyvanKooten bővítményét: MailChimp for WordPress - és nagyszerű!"
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
  msgstr "Csiriplejen MailChimp for WordPress bővítményről!"
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
- msgstr "Értékelje a bővítményt a blogján és linkeljen a <a href=\"%s\">the bővítmény oldalára</a>!"
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
882
  msgstr "Írja meg, hogy „működik” a WordPress.org bővítmény oldalán!"
883
 
 
 
 
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
@@ -896,69 +990,64 @@ msgstr "A Pro verzióban lehet több és jobb űrlapja, van benne haladó és eg
896
  msgid "More information about MailChimp for WP Pro"
897
  msgstr "További információk a MailChimp for WP Pro-ról"
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr "Dokumentáció"
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr "Űrlap mentése"
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr "Űrlap frissítése"
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr "Vissza az általános űrlap beállításokhoz"
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr "Űrlap frissítve."
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr "Űrlap mentve."
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr "Opcionális beállítások"
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr "Űrlap változók"
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr "MailChimp és licensz"
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr "Jelentések"
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr "%s kifizetése"
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr "Kérjük kösse össze a bővítményt a MailChimppel. <a href=\"%s\">Adjon meg érvényes API kulcsot!</a>"
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr "A befejezés dátuma nem lehet a kézdés dátuma előtt."
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr "Kikapcsolta a naplózást a %s szűrővel. Engedélyezze újra a Jelentések oldal használatához."
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1064,13 @@ msgstr "Nem sikerült létrehozni a stíluslapot. Adja kézzel a generált CSS k
975
  msgid "%sShow generated CSS%s"
976
  msgstr "%sLétrehozott CSS megjelenítése%s"
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr "Ezen stílusok alkalmazásához a weboldalon, válassza „Igen, egyedi űrlap stílusok betöltése” opciót az %sŰrlap beállítások%snál."
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr "A %sCSS stíluslap%s létrehozva."
987
 
@@ -1019,29 +1108,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr "Elérte az aktivációs korlátját. Vagy <a href=\"%s\">alapra kell állítani</a> vagy <a href=\"%s\">frissíteni kell</a> a licenszet, hogy használhassa ezen az oldalon."
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
- msgstr "A licensze lejárt. <a href=\"%s\">Hosszabbítsa meg licenszét</a>, ha újra használni szeretné."
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr "Nem sikerült aktiválni a licenszét. A licensz kulcs érvénytelennek tűnik."
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr "%s licensz kikapcsolva."
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr "Nem sikerült kikapcsolat a licenszet: %s."
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr "Kérés hiba: „%s”"
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr "%s: licensz beállítások"
1047
 
@@ -1076,51 +1173,56 @@ msgid "you are receiving updates"
1076
  msgstr "kap frissítéseket"
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
- msgstr "INAKTÍV"
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
  msgstr "<strong>nem</strong> kap frissítéseket."
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr "Licensz állapot módosítása"
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr "Licensz kikapcsolása"
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr "(licensz kikapcsolása, hogy egy másik WordPress oldalon aktiválni lehessen)"
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr "Licensz aktiválása"
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr "Előbb adja meg az alábbi mezőbe a licensz kulcsot."
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr "Licensz kulcs"
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr "Másolja ide a licensz kulcsot, a kapott emailből másolva."
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr "A licnesz kulcsot %s PHP állandó segítségével adta meg."
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr "%s licensz lejár ekkor: %s."
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr "%slicensz frissítése most%s."
1126
 
@@ -1134,25 +1236,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr "<strong>Hiba:</strong> nem találtam feliratkozás űrlapot. Kérjük, ellenőrizze, hogy a jó űrlap azonosítót adott meg."
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr "Új feliratkozás"
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr "<strong>%s</strong> feliratkozott %s weboldalon %s napon a(z) „%s” űrlap segítségével."
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr "Engedélyezte a dupla megerősítést a(z) „%s” űrlaphoz. A feliratkozók nem kerülnek be a MailChimp listákba, amíg nem erősítik meg az emailcímüket."
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr "Ezt az emailt a MailChimp for WordPress bővítmény automatikusan küldte."
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr "MailChimp for WP űrlap"
@@ -1179,7 +1298,7 @@ msgstr "Válassza ki a megjelenítendő űrlapot"
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr "Nincsen feliratkozás űrlap. <a href=\"%s\">Készítsen egyet most!</a>"
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1309,8 @@ msgid "ID"
1190
  msgstr "azonosító"
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr "Űrlap"
1197
 
@@ -1237,10 +1356,6 @@ msgstr "Feliratkozás naplók"
1237
  msgid "Email"
1238
  msgstr "Email"
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr "Lista"
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr "Típus"
@@ -1250,8 +1365,8 @@ msgid "Source"
1250
  msgstr "Forrás"
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
- msgstr "Extra adat"
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1257
  msgid "Subscribed"
@@ -1262,7 +1377,7 @@ msgid "Log items deleted."
1262
  msgstr "Törölt elemek naplózása"
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr "Megjegyzés"
1268
 
@@ -1270,44 +1385,44 @@ msgstr "Megjegyzés"
1270
  msgid "deleted"
1271
  msgstr "törölve"
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr "Regisztráció"
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr "MultiSite regisztráció"
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr "Pénztár"
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr "Contact Form 7"
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr "bbPress: új téma"
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr "bbPress: új válasz"
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr "Egyéb űrlap"
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr "Nem találtam feliratkozási kéréseket."
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr "Mind"
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr "Jelölőnégyzet"
1313
 
@@ -1385,23 +1500,6 @@ msgid ""
1385
  "forms."
1386
  msgstr "Használja ezt: %s a Contact Form 7 kódot, a feliratkozás jelölőnégyzet CF7 űrlapokba való berakásához."
1387
 
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr "WooCommerce jelölőnégyzet helye"
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr "A számlázási adatok után"
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr "A további információk után"
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr "Válassza ki a jelölőnégyzet helyét a WooCommerce fizetési űrlapon."
1404
-
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
1407
  msgstr "Egyedi címke szövegek"
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
11
+ "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "Beállítások"
32
 
43
  msgstr "MailChimp beállítások"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "Jelölőnégyzetek"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Űrlapok"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr ""
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Hozzászólás űrlap"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Regisztréciós űrlap"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "MultiSite űrlap"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "BuddyPress regisztráció"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr "%s kifizetése"
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr "MailChimp gyorstár frissítve."
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr "Nem sikerült a MailChimp gyorsítótár frissítése - kérjük, próbálja később."
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
  msgstr "Egy EMAIL mező. Például: <code>%s</code>"
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
  msgstr "Egy elküldés gomb. Például: <code>%s</code>"
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
  msgstr "Feliratkozás"
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
  msgstr "Egy „%s” mező"
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr "Legalább egy listát válasszon ki a feliratkozáshoz."
121
 
144
  msgstr "A feliratkozás űrlap a %sMailChimp for WordPress beállításai%snál módosítható."
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr "Emailcím"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr "Az emailcímed"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr "Feliratkozás"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Irj fel a hírlevél címlistára!"
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Köszönjük. Ön sikeresen feliratkozott. Nézze meg a bejövő leveleit!"
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Hoppá! Valami nem működött. Kérjük, próbálja újra később!"
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr "Kérjük, érvényes emailcímet adjon meg."
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Ez az emailcím már feliratkozott. Köszönjük."
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Kérjük, töltse ki a CAPTCHA-t."
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
  msgstr "Kérjük, töltse ki a kötelező mezőket."
197
 
259
  msgid "No"
260
  msgstr "Nem"
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp for WordPress - Hiba"
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Kérjük válaszon egy listát a feliratkozáshoz <a href=\"%s\">jelölőnégyzet beállítások</a>nál."
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Ezt az üzenetet csak adminisztrátorok látják hibajavítási célzattal."
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "A MailChimp kiszolgáló az alábbi hibával válaszolt a feliratkozási kérésre:"
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Ez az adat lett elküldve a MailChimp felé:"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
  msgstr "Emailcím:"
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
  msgstr "Változók egyesítése:"
298
 
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Válassza az „Igen”-t, ha a jelölő négyzet fura helyen jelenik meg."
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr "WooCommerce jelölőnégyzet helye"
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr "A számlázási adatok után"
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr "A további információk után"
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr "Válassza ki a jelölőnégyzet helyét a WooCommerce fizetési űrlapon."
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
  msgstr "Űrlap beállítások"
503
  msgid "Yes, load basic form styles"
504
  msgstr "Igen, alap űrlap stílusok betöltése"
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "(CSAK a PRO-ban)"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr "Űrlap kód"
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr "Hiányoznak az űrlapról a következő (kötelező) mezők:"
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr "HTML elemek (például: %s) lehetnek az üzenet mezőkben."
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr ""
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr ""
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr ""
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr ""
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr ""
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr ""
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr "Űrlap változók"
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr "Az alábbi változókkal dinamikus tartalom kerülhet az űrlapba."
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
+ msgstr ""
763
+
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
  msgid "Replaced with the form response (error or success messages)."
767
  msgstr "Lecserélve az űrlap válasz üzenetére (hiba vagy siker üzenet)."
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
  msgid "Replaced with a captcha field."
772
  msgstr "Lecserélve egy captcha mezőre."
773
 
774
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
  msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr "Lecserélve a feliratkozók számára a kijelölt listá(k)ban."
778
 
779
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
  msgid "Replaced with the current site language, eg: %s"
782
  msgstr "Lecserélve a weboldal aktuális nyelvére, pl.: %s"
783
 
784
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
  msgid "Replaced with the visitor's IP address"
787
  msgstr "Lecserélve a látogató IP címére."
788
 
789
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr "Lecserélve az aktuális dátumra (éééé/hh/nn, pl.: %s)."
793
 
794
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
797
  msgstr "Lecserélve az aktuális időre (óó:pp:mm, pl.: %s)."
798
 
799
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
  msgid ""
802
  "Replaced with the logged in user's email (or nothing, if there is no logged "
803
  "in user)"
804
  msgstr "Lecserélve a belépett felhasználó emailcímére (vagy üres lesz, ha nincs belépett felhasználó)."
805
 
806
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
  msgid "First name of the current user"
809
  msgstr "Aktuális felhasználó keresztneve"
810
 
811
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
  msgid "Last name of the current user"
814
  msgstr "Aktuális felhasználó vezetékneve"
815
 
816
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
  msgid "Current user ID"
819
  msgstr "Aktuális felhasználó azonosító"
820
 
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr "Aktuális URL"
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr ""
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr "Tetszik a bővítmény? <a href=\"%s\">Frissítsen a MailChimp for WordPress Pro-re most</a> egy még jobb bővítményért, imádni fogja."
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr "Ezt a bővítményt nem a MailChimp fejleszti, és nem áll vele közvetlen kapcsolatban."
946
  msgstr "Adja jelét a megbecsülésének"
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
+ msgstr ""
951
+
952
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
  msgid "Leave a %s plugin review on WordPress.org"
954
  msgstr "Értékelje a bővítményt %s a WordPress.org oldalon!"
955
 
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr "Én is használom @DannyvanKooten bővítményét: MailChimp for WordPress - és nagyszerű!"
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr "Csiriplejen MailChimp for WordPress bővítményről!"
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
+ msgstr ""
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr "Írja meg, hogy „működik” a WordPress.org bővítmény oldalán!"
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr ""
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr "További információk a MailChimp for WP Pro-ról"
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr "Dokumentáció"
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr "Űrlap mentése"
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr "Űrlap frissítése"
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr "Vissza az általános űrlap beállításokhoz"
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr "Űrlap frissítve."
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr "Űrlap mentve."
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr "Opcionális beállítások"
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr "Űrlap változók"
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr "MailChimp és licensz"
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr "Jelentések"
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr "Kérjük kösse össze a bővítményt a MailChimppel. <a href=\"%s\">Adjon meg érvényes API kulcsot!</a>"
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr "A befejezés dátuma nem lehet a kézdés dátuma előtt."
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr "Kikapcsolta a naplózást a %s szűrővel. Engedélyezze újra a Jelentések oldal használatához."
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr "%sLétrehozott CSS megjelenítése%s"
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr "Ezen stílusok alkalmazásához a weboldalon, válassza „Igen, egyedi űrlap stílusok betöltése” opciót az %sŰrlap beállítások%snál."
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr "A %sCSS stíluslap%s létrehozva."
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr "Elérte az aktivációs korlátját. Vagy <a href=\"%s\">alapra kell állítani</a> vagy <a href=\"%s\">frissíteni kell</a> a licenszet, hogy használhassa ezen az oldalon."
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
+ msgstr ""
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr "Nem sikerült aktiválni a licenszét. A licensz kulcs érvénytelennek tűnik."
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr "%s licensz kikapcsolva."
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr ""
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr "Nem sikerült kikapcsolat a licenszet: %s."
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr "Kérés hiba: „%s”"
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr "%s: licensz beállítások"
1144
 
1173
  msgstr "kap frissítéseket"
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
+ msgstr ""
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr "<strong>nem</strong> kap frissítéseket."
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr "INAKTÍV"
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr "Licensz állapot módosítása"
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr "Licensz kikapcsolása"
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr "(licensz kikapcsolása, hogy egy másik WordPress oldalon aktiválni lehessen)"
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr "Licensz aktiválása"
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr "Előbb adja meg az alábbi mezőbe a licensz kulcsot."
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr "Licensz kulcs"
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr "Másolja ide a licensz kulcsot, a kapott emailből másolva."
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr "A licnesz kulcsot %s PHP állandó segítségével adta meg."
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr "%s licensz lejár ekkor: %s."
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr "%slicensz frissítése most%s."
1228
 
1236
  " correct form ID."
1237
  msgstr "<strong>Hiba:</strong> nem találtam feliratkozás űrlapot. Kérjük, ellenőrizze, hogy a jó űrlap azonosítót adott meg."
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr ""
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr "Új feliratkozás"
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr "<strong>%s</strong> feliratkozott %s weboldalon %s napon a(z) „%s” űrlap segítségével."
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr "Lista"
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr ""
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr "Engedélyezte a dupla megerősítést a(z) „%s” űrlaphoz. A feliratkozók nem kerülnek be a MailChimp listákba, amíg nem erősítik meg az emailcímüket."
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr "Ezt az emailt a MailChimp for WordPress bővítmény automatikusan küldte."
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr ""
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr "MailChimp for WP űrlap"
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr "Nincsen feliratkozás űrlap. <a href=\"%s\">Készítsen egyet most!</a>"
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr "azonosító"
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr "Űrlap"
1316
 
1356
  msgid "Email"
1357
  msgstr "Email"
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr "Típus"
1365
  msgstr "Forrás"
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
+ msgstr ""
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1372
  msgid "Subscribed"
1377
  msgstr "Törölt elemek naplózása"
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr "Megjegyzés"
1383
 
1385
  msgid "deleted"
1386
  msgstr "törölve"
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr "Regisztráció"
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr "MultiSite regisztráció"
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr "Pénztár"
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr "Contact Form 7"
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr "bbPress: új téma"
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr "bbPress: új válasz"
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr "Egyéb űrlap"
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr "Nem találtam feliratkozási kéréseket."
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr "Mind"
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr "Jelölőnégyzet"
1428
 
1500
  "forms."
1501
  msgstr "Használja ezt: %s a Contact Form 7 kódot, a feliratkozás jelölőnégyzet CF7 űrlapokba való berakásához."
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr "Egyedi címke szövegek"
languages/mailchimp-for-wp-it_IT.po CHANGED
@@ -7,9 +7,9 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: MailChimp for WordPress\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
10
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
11
- "PO-Revision-Date: 2014-11-28 21:13+0000\n"
12
- "Last-Translator: Dan <d.murtas@gmail.com>\n"
13
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/it_IT/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,7 +27,7 @@ msgstr ""
27
  "X-Textdomain-Support: yes\n"
28
 
29
  #: mailchimp-for-wordpress/includes/class-admin.php:130
30
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
31
  msgid "Settings"
32
  msgstr "Impostazioni"
33
 
@@ -44,80 +44,79 @@ msgid "MailChimp Settings"
44
  msgstr "Impostazioni MailChimp"
45
 
46
  #: mailchimp-for-wordpress/includes/class-admin.php:161
47
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
48
  msgid "Checkboxes"
49
  msgstr "Caselle di controllo a selezione multipla"
50
 
51
  #: mailchimp-for-wordpress/includes/class-admin.php:162
52
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
53
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
54
  msgid "Forms"
55
  msgstr "Moduli"
56
 
57
- #: mailchimp-for-wordpress/includes/class-admin.php:310
58
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
59
  msgid "Comment form"
60
  msgstr "Modulo Commenti"
61
 
62
- #: mailchimp-for-wordpress/includes/class-admin.php:311
63
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
64
  msgid "Registration form"
65
  msgstr "Modulo Registrazione"
66
 
67
- #: mailchimp-for-wordpress/includes/class-admin.php:315
68
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
69
  msgid "MultiSite forms"
70
  msgstr "Modulo MultiSite"
71
 
72
- #: mailchimp-for-wordpress/includes/class-admin.php:319
73
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
74
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
75
  msgid "BuddyPress registration"
76
  msgstr "Registrazione BuddyPress"
77
 
78
- #: mailchimp-for-wordpress/includes/class-admin.php:327
79
- #: mailchimp-for-wordpress/includes/class-admin.php:331
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
81
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
82
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
83
- msgid "(PRO ONLY)"
84
- msgstr "(SOLO PRO)"
85
 
86
- #: mailchimp-for-wordpress/includes/class-admin.php:360
87
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
88
  msgid "Renewed MailChimp cache."
89
  msgstr "Aggiorna la cache di MailChimp"
90
 
91
- #: mailchimp-for-wordpress/includes/class-admin.php:362
92
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
93
  msgid "Failed to renew MailChimp cache - please try again later."
94
  msgstr "Impossibile aggiornare la cache MailChimp - si prega di riprovare piu' tardi."
95
 
96
- #: mailchimp-for-wordpress/includes/class-admin.php:395
97
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
98
  msgid "An EMAIL field. Example: <code>%s</code>"
99
  msgstr "Un campo E-M@il. Esempio: <code>%s</code>"
100
 
101
- #: mailchimp-for-wordpress/includes/class-admin.php:401
102
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
103
  msgid "A submit button. Example: <code>%s</code>"
104
  msgstr "Pulsante di conferma. Esempio: <code>%s</code>"
105
 
106
- #: mailchimp-for-wordpress/includes/class-admin.php:401
107
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
108
  msgid "Sign Up"
109
  msgstr "Iscriviti"
110
 
111
- #: mailchimp-for-wordpress/includes/class-admin.php:426
112
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
113
  msgid "A '%s' field"
114
  msgstr "Un '%s' campo"
115
 
116
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
117
- msgid "MailChimp Error:"
118
- msgstr "MailChimp Errore:"
119
-
120
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
121
  msgid "Please select at least one list to subscribe to."
122
  msgstr "Seleziona almeno una lista da sottoscrivere."
123
 
@@ -146,53 +145,54 @@ msgid ""
146
  msgstr "Tu puoi modificare il tuo modulo di iscrizione nel %sMailChimp per WordPress impostazioni del modulo%s."
147
 
148
  #: mailchimp-for-wordpress/includes/functions/general.php:21
149
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
150
  msgid "Email address"
151
  msgstr "Indirizzo E-M@il"
152
 
153
  #: mailchimp-for-wordpress/includes/functions/general.php:22
154
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
155
  msgid "Your email address"
156
  msgstr "Il tuo indirizzo E-M@il"
157
 
158
  #: mailchimp-for-wordpress/includes/functions/general.php:23
159
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
160
  msgid "Sign up"
161
  msgstr "Iscriviti"
162
 
163
  #: mailchimp-for-wordpress/includes/functions/general.php:30
164
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
165
  msgid "Sign me up for the newsletter!"
166
  msgstr "Iscrivimi alla newsletter!"
167
 
168
- #: mailchimp-for-wordpress/includes/functions/general.php:44
169
  msgid ""
170
  "Thank you, your sign-up request was successful! Please check your e-mail "
171
  "inbox."
172
  msgstr "Graize, la tua richiesta di iscrizione ha avuto successo! Controlla la tua casella di posta."
173
 
174
- #: mailchimp-for-wordpress/includes/functions/general.php:45
175
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
176
  msgid "Oops. Something went wrong. Please try again later."
177
  msgstr "Oops. Qualcosa è andato storto. Riprova più tardi."
178
 
179
- #: mailchimp-for-wordpress/includes/functions/general.php:46
180
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
181
  msgid "Please provide a valid email address."
182
  msgstr "Si prega di fornire un indirizzo E-M@il valido."
183
 
184
- #: mailchimp-for-wordpress/includes/functions/general.php:47
185
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
186
  msgid "Given email address is already subscribed, thank you!"
187
  msgstr "Indirizzo E-M@il inserito è già iscritto, grazie!"
188
 
189
- #: mailchimp-for-wordpress/includes/functions/general.php:48
190
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
191
  msgid "Please complete the CAPTCHA."
192
  msgstr "Si prega di compilare il CAPTCHA."
193
 
194
- #: mailchimp-for-wordpress/includes/functions/general.php:49
195
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
196
  msgid "Please fill in the required fields."
197
  msgstr "Si prega di compilare i campi obbligatori."
198
 
@@ -260,39 +260,40 @@ msgstr "Si"
260
  msgid "No"
261
  msgstr "No"
262
 
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
266
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
267
  msgid "MailChimp for WordPress - Error"
268
  msgstr "MailChimp per WordPress - Errore"
269
 
270
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
271
  msgid ""
272
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
273
  "settings</a>."
274
  msgstr "Seleziona una lista da sottoscrivere nelle <a href=\"%s\">impostazioni checkbox</a>."
275
 
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
277
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
278
  msgid "This message is only visible to administrators for debugging purposes."
279
  msgstr "Questo messaggio è visibile solo agli amministratori per scopi di debug."
280
 
281
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
282
  msgid ""
283
  "The MailChimp server returned the following error message as a response to "
284
  "our sign-up request:"
285
  msgstr "Il server MailChimp ha restituito il seguente messaggio di errore come risposta alla tua richiesta di iscrizione:"
286
 
287
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
288
  msgid "This is the data that was sent to MailChimp:"
289
  msgstr "Questi sono i dati che sono stati inviati a MailChimp:"
290
 
291
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
292
  msgid "Email address:"
293
  msgstr "Indirizzo e-mail:"
294
 
295
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
296
  msgid "Merge variables:"
297
  msgstr "Unisci variabili:"
298
 
@@ -456,8 +457,29 @@ msgstr "Caricare i file CSS di default?"
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Selezionare \"si\" se la casella di controllo deve apparire in un posto bizzarro."
458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
460
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
461
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
462
  msgid "Form Settings"
463
  msgstr "Settaggi Modulo"
@@ -482,6 +504,12 @@ msgstr "Caricare stili dei moduli (CSS)?"
482
  msgid "Yes, load basic form styles"
483
  msgstr "Si, carica il foglio di stile di base"
484
 
 
 
 
 
 
 
485
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
486
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
487
  msgid "Yes, load my custom form styles"
@@ -544,7 +572,7 @@ msgid "Form mark-up"
544
  msgstr "Modulo mark-up"
545
 
546
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
547
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
548
  msgid "Your form is missing the following (required) form fields:"
549
  msgstr "Nel modulo mancano i seguenti campi obbligatori:"
550
 
@@ -676,74 +704,123 @@ msgstr "Messaggio errore generale"
676
  msgid "HTML tags like %s are allowed in the message fields."
677
  msgstr "I tag HTML come %s sono ammessi nel campo messaggio."
678
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
680
  msgid "Form variables"
681
  msgstr "Variabili modulo"
682
 
683
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
684
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
685
  msgid "Use the following variables to add some dynamic content to your form."
686
  msgstr "Utilizzare le seguenti variabili per aggiungere alcuni contenuti dinamici al form."
687
 
688
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
689
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
690
  msgid "Replaced with the form response (error or success messages)."
691
  msgstr "Sostituite con il Modulo di Risposta (messaggi di errore o di successo)."
692
 
693
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
694
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
695
  msgid "Replaced with a captcha field."
696
  msgstr "Sostituite con il campo captcha."
697
 
698
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
699
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
700
  msgid "Replaced with the number of subscribers on the selected list(s)"
701
  msgstr "Sostituite con il numero di iscritti della lista/liste selezionata/e"
702
 
703
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
704
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
705
  msgid "Replaced with the current site language, eg: %s"
706
  msgstr "Sostituite con la lingua corrente del sito, eg: %s"
707
 
708
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
709
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
710
  msgid "Replaced with the visitor's IP address"
711
  msgstr "Sostituite con 'indirizzo IP del visitatore"
712
 
713
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
714
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
715
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
716
  msgstr "Sostituite con la data corrente (yyyy/mm/dd eg: %s)"
717
 
718
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
719
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
720
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
721
  msgstr "Sostituite con l'ora corrente (hh:mm:ss eg: %s)"
722
 
723
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
724
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
725
  msgid ""
726
  "Replaced with the logged in user's email (or nothing, if there is no logged "
727
  "in user)"
728
  msgstr "Sostituite con l'E-M@il dell'utente (o niente, se non vi è alcun utente collegato)"
729
 
730
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
731
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
732
  msgid "First name of the current user"
733
  msgstr "Nome dell'utente corrente"
734
 
735
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
736
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
737
  msgid "Last name of the current user"
738
  msgstr "Cognome dell'utente corrente"
739
 
740
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
741
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
742
  msgid "Current user ID"
743
  msgstr "Username Corrente"
744
 
745
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
746
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
747
  msgid "Current URL"
748
  msgstr "URL Corrente"
749
 
@@ -831,11 +908,20 @@ msgstr "Seleziona almeno una prima lista."
831
 
832
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
833
  msgid ""
 
 
 
 
 
 
 
 
834
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
835
  "now</a> for an even better plugin, you will love it."
836
  msgstr "Ti piace questo plugin? <a href=\"%s\"> Aggiorna a MailChimp per WordPress Pro ora </a> per un plugin ancora migliore, ti piacerà."
837
 
838
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
839
  msgid ""
840
  "This plugin is not developed by or affiliated with MailChimp in any way."
841
  msgstr "Questo plugin non è sviluppato da o affiliato con MailChimp in alcun modo."
@@ -861,27 +947,35 @@ msgid "Show a token of your appreciation"
861
  msgstr "Dimostra il tuo apprezzamento"
862
 
863
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
 
 
 
 
864
  msgid "Leave a %s plugin review on WordPress.org"
865
  msgstr "Lascia una recensione del plugin %s su WordPress.org"
866
 
867
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
868
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
869
  msgstr "Sto usando MailChimp per WordPress di @DannyvanKooten - E' fantastico!"
870
 
871
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
872
  msgid "Tweet about MailChimp for WordPress"
873
  msgstr ""
874
 
875
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
876
  msgid ""
877
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
878
- "page</a>"
879
  msgstr ""
880
 
881
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
882
  msgid "Vote \"works\" on the WordPress.org plugin page"
883
  msgstr ""
884
 
 
 
 
 
885
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
886
  msgid ""
887
  "This plugin has an even better premium version, I am sure you will love it."
@@ -897,69 +991,64 @@ msgstr ""
897
  msgid "More information about MailChimp for WP Pro"
898
  msgstr ""
899
 
900
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
901
  msgid "Documentation"
902
  msgstr "Documentazione"
903
 
904
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
905
  msgid "Save Form"
906
  msgstr "Salva Modulo"
907
 
908
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
909
  msgid "Update Form"
910
  msgstr "Aggiorna Modulo"
911
 
912
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
913
  msgid "Back to general form settings"
914
  msgstr "Torna alle impostazioni generali"
915
 
916
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
917
  msgid "Form updated."
918
  msgstr "Modulo aggiornato."
919
 
920
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
921
  msgid "Form saved."
922
  msgstr "Modulo salvato."
923
 
924
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
925
  msgid "Optional Settings"
926
  msgstr "Settaggi Opzionali"
927
 
928
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
929
  msgid "Form Variables"
930
  msgstr "Variabili Modulo"
931
 
932
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
933
  msgid "MailChimp & License"
934
  msgstr "MailChimp & Licenza"
935
 
936
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
937
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
938
  msgid "Reports"
939
  msgstr "Rapporti"
940
 
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
942
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
943
- msgid "%s checkout"
944
- msgstr "%s cassa"
945
-
946
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
947
  msgid ""
948
  "Please make sure the plugin is connected to MailChimp. <a "
949
  "href=\"%s\">Provide a valid API key.</a>"
950
  msgstr "Si prega di assicurarsi che il plugin sia collegato a MailChimp. <a href=\"%s\">Inserire una chiave API valida.</a>"
951
 
952
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
953
  msgid "End date can't be before the start date"
954
  msgstr "La data di fine non puo' essere antecedente alla data di inizio"
955
 
956
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
957
  msgid ""
958
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
959
  "page."
960
  msgstr "Hai disattivato il log utilizzando il %s filtro. Riattivalo per utilizzare le relazioni di pagina."
961
 
962
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
963
  msgid ""
964
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
965
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -976,13 +1065,13 @@ msgstr "Impossibile creare il foglio di stile. Aggiungere manualmente il CSS gen
976
  msgid "%sShow generated CSS%s"
977
  msgstr "%sMostra CSS generato%s"
978
 
979
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
980
  msgid ""
981
  "To apply these styles on your website, select \"load custom form styles\" in"
982
  " the %sform settings%s"
983
  msgstr "Per applicare questi stili sul tuo sito web, selezionare \"caricare stili di modulo personalizzato\" nel %s moduloimpostazioni di %s"
984
 
985
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
986
  msgid "The %sCSS Stylesheet%s has been created."
987
  msgstr "Il %sCSS foglio di stile%s è stato creato."
988
 
@@ -1020,29 +1109,37 @@ msgid ""
1020
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1021
  msgstr "Hai raggiunto il limite di attivazione. È necessario <a href=\"%s\">resettare</a> o <a href=\"%s\">aggiornare la tua licenza</a> per usarla su questo sito."
1022
 
1023
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1024
  msgid ""
1025
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1026
- " order to use it again."
1027
- msgstr "La licenza è scaduta. È necessario <a href=\"%s\"> estendere la licenza </a> al fine di utilizzarlo di nuovo."
1028
 
1029
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1030
  msgid "Failed to activate your license, your license key seems to be invalid."
1031
  msgstr "Impossibile attivare la licenza, la chiave di licenza sembra non essere valida."
1032
 
1033
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1034
  msgid "Your %s license has been deactivated."
1035
  msgstr "La vostra licenza %s non è attiva."
1036
 
1037
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1038
  msgid "Failed to deactivate your %s license."
1039
  msgstr "Impossibile disattivare la licenza %s."
1040
 
1041
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1042
  msgid "Request error: \"%s\""
1043
  msgstr "Richiesta di errore: \"%s\""
1044
 
1045
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1046
  msgid "%s: License Settings"
1047
  msgstr "%s: Impostazioni licenza"
1048
 
@@ -1077,51 +1174,56 @@ msgid "you are receiving updates"
1077
  msgstr "Stai ricevendo gli aggiornamenti"
1078
 
1079
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1080
- msgid "INACTIVE"
1081
- msgstr "INATTIVO"
1082
 
1083
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1084
  msgid "you are <strong>not</strong> receiving updates."
1085
  msgstr "tu <strong>non</strong> stai ricevendo gli aggiornamenti."
1086
 
1087
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1088
  msgid "Toggle license status"
1089
  msgstr "Toggle stato licenza"
1090
 
1091
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1092
  msgid "Deactivate License"
1093
  msgstr "Disattivare Licenza"
1094
 
1095
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1096
  msgid ""
1097
  "(deactivate your license so you can activate it on another WordPress site)"
1098
  msgstr "(disattivare la licenza in modo da poterla attivare su un altro sito WordPress)"
1099
 
1100
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1101
  msgid "Activate License"
1102
  msgstr "Attivare Licenza"
1103
 
1104
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1105
  msgid "Please enter a license key in the field below first."
1106
  msgstr "Prima inserisci una chiave di licenza nel campo sottostante."
1107
 
1108
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1109
  msgid "License Key"
1110
  msgstr "Chiave Licenza"
1111
 
1112
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1113
  msgid "Paste your license key here, as found in the email receipt."
1114
  msgstr "Incollare la chiave di licenza qui, come si trova nella ricevuta email."
1115
 
1116
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1117
  msgid "You defined your license key using the %s PHP constant."
1118
  msgstr "Definisci la tua chiave di licenza usando la %s costante PHP."
1119
 
1120
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1121
  msgid "Your %s license will expire on %s."
1122
  msgstr "La tua %s licenza scadrà il %s."
1123
 
1124
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1125
  msgid "%sRenew your license now%s."
1126
  msgstr "%sRinnova ora la tua licenza%s."
1127
 
@@ -1135,25 +1237,42 @@ msgid ""
1135
  " correct form ID."
1136
  msgstr "<strong> Errore: </ strong> modulo di iscrizione non trovato. Si prega di verificare se è stato utilizzato l'ID di modulo corretto."
1137
 
1138
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1139
  msgid "New Sign-Up"
1140
  msgstr "Nuova iscrizione"
1141
 
1142
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1143
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1144
  msgstr "<strong>%s</ strong> firmato a %s su %s utilizzando il modulo \"%s\"."
1145
 
1146
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1147
  msgid ""
1148
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1149
  "be added to the selected MailChimp lists until they confirm their email "
1150
  "address."
1151
  msgstr "Nota che hai attivato double opt-in per il \"%s\" modulo. Gli utenti non verranno aggiunti alle liste MailChimp selezionate fino a quando non confermano il loro indirizzo email."
1152
 
1153
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1154
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1155
  msgstr "Questa email è stata auto-inviata da MailChimp per WordPress."
1156
 
 
 
 
 
1157
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1158
  msgid "MailChimp for WP Form"
1159
  msgstr "Modulo MailChimp per WP"
@@ -1180,7 +1299,7 @@ msgstr "Selezionatre il modulo da visualizzare"
1180
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1181
  msgstr "Non hai alcun modulo di iscrizione. <a href=\"%s\"> Creane uno adesso. </a>"
1182
 
1183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1184
  msgid ""
1185
  "Thank you, your sign-up request was successful! Please check your email "
1186
  "inbox to confirm."
@@ -1191,8 +1310,8 @@ msgid "ID"
1191
  msgstr "ID"
1192
 
1193
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1195
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1196
  msgid "Form"
1197
  msgstr "Modulo"
1198
 
@@ -1238,10 +1357,6 @@ msgstr "Logs iscritto"
1238
  msgid "Email"
1239
  msgstr "E-M@il"
1240
 
1241
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1242
- msgid "List"
1243
- msgstr "Lista"
1244
-
1245
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1246
  msgid "Type"
1247
  msgstr "Tipo"
@@ -1251,8 +1366,8 @@ msgid "Source"
1251
  msgstr "Origine"
1252
 
1253
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1254
- msgid "Extra data"
1255
- msgstr "Dati Extra"
1256
 
1257
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1258
  msgid "Subscribed"
@@ -1263,7 +1378,7 @@ msgid "Log items deleted."
1263
  msgstr "Log elementi eliminati."
1264
 
1265
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1266
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1267
  msgid "Comment"
1268
  msgstr "Commento"
1269
 
@@ -1271,44 +1386,44 @@ msgstr "Commento"
1271
  msgid "deleted"
1272
  msgstr "cancellato"
1273
 
1274
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1275
  msgid "Registration"
1276
  msgstr "Registrazione"
1277
 
1278
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1279
  msgid "MultiSite registration"
1280
  msgstr "Registrazione MultiSito"
1281
 
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1283
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1284
  msgid "Checkout"
1285
  msgstr "Cassa"
1286
 
1287
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1288
  msgid "Contact Form 7"
1289
  msgstr "Modulo Contatti 7"
1290
 
1291
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1292
  msgid "bbPress: New Topic"
1293
  msgstr "bbPress: Nuovo argomento"
1294
 
1295
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1296
  msgid "bbPress: New Reply"
1297
  msgstr "bbPress: Nuova risposta"
1298
 
1299
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1300
  msgid "Other Form"
1301
  msgstr "Altro modulo"
1302
 
1303
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1304
  msgid "No subscribe requests found."
1305
  msgstr "Richieste iscritti non trovate."
1306
 
1307
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1308
  msgid "All"
1309
  msgstr "Tutto"
1310
 
1311
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1312
  msgid "Checkbox"
1313
  msgstr "Controllo a selezione multipla"
1314
 
@@ -1386,23 +1501,6 @@ msgid ""
1386
  "forms."
1387
  msgstr ""
1388
 
1389
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1390
- msgid "WooCommerce checkbox position"
1391
- msgstr "Posizione casella di controllo WooCommerce"
1392
-
1393
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1394
- msgid "After the billing details"
1395
- msgstr "Dopo i dettagli di pagamento"
1396
-
1397
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1398
- msgid "After the additional information"
1399
- msgstr "Dopo le informazioni aggiuntive"
1400
-
1401
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1402
- msgid ""
1403
- "Choose the position for the checkbox in your WooCommerce checkout form."
1404
- msgstr "Scegli la posizione per il controllo a selezione multipla nel tuo modulo di pagamento di WooCommerce"
1405
-
1406
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1407
  msgid "Custom label texts"
1408
  msgstr "Etichetta personalizzata"
7
  msgstr ""
8
  "Project-Id-Version: MailChimp for WordPress\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
10
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
11
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
12
+ "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
13
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/it_IT/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
27
  "X-Textdomain-Support: yes\n"
28
 
29
  #: mailchimp-for-wordpress/includes/class-admin.php:130
30
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
31
  msgid "Settings"
32
  msgstr "Impostazioni"
33
 
44
  msgstr "Impostazioni MailChimp"
45
 
46
  #: mailchimp-for-wordpress/includes/class-admin.php:161
47
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
48
  msgid "Checkboxes"
49
  msgstr "Caselle di controllo a selezione multipla"
50
 
51
  #: mailchimp-for-wordpress/includes/class-admin.php:162
52
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
53
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
54
  msgid "Forms"
55
  msgstr "Moduli"
56
 
57
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
58
+ msgid "This option is only available in MailChimp for WordPress Pro."
59
+ msgstr ""
60
+
61
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
62
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
63
  msgid "Comment form"
64
  msgstr "Modulo Commenti"
65
 
66
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
67
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
68
  msgid "Registration form"
69
  msgstr "Modulo Registrazione"
70
 
71
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
72
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
73
  msgid "MultiSite forms"
74
  msgstr "Modulo MultiSite"
75
 
76
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
77
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
78
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
79
  msgid "BuddyPress registration"
80
  msgstr "Registrazione BuddyPress"
81
 
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
83
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
85
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
86
+ msgid "%s checkout"
87
+ msgstr "%s cassa"
 
88
 
89
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
90
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
91
  msgid "Renewed MailChimp cache."
92
  msgstr "Aggiorna la cache di MailChimp"
93
 
94
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
95
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
96
  msgid "Failed to renew MailChimp cache - please try again later."
97
  msgstr "Impossibile aggiornare la cache MailChimp - si prega di riprovare piu' tardi."
98
 
99
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
100
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
101
  msgid "An EMAIL field. Example: <code>%s</code>"
102
  msgstr "Un campo E-M@il. Esempio: <code>%s</code>"
103
 
104
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
105
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
106
  msgid "A submit button. Example: <code>%s</code>"
107
  msgstr "Pulsante di conferma. Esempio: <code>%s</code>"
108
 
109
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
110
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
111
  msgid "Sign Up"
112
  msgstr "Iscriviti"
113
 
114
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
115
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
116
  msgid "A '%s' field"
117
  msgstr "Un '%s' campo"
118
 
119
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr "Seleziona almeno una lista da sottoscrivere."
122
 
145
  msgstr "Tu puoi modificare il tuo modulo di iscrizione nel %sMailChimp per WordPress impostazioni del modulo%s."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
149
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
150
  msgid "Email address"
151
  msgstr "Indirizzo E-M@il"
152
 
153
  #: mailchimp-for-wordpress/includes/functions/general.php:22
154
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
155
  msgid "Your email address"
156
  msgstr "Il tuo indirizzo E-M@il"
157
 
158
  #: mailchimp-for-wordpress/includes/functions/general.php:23
159
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
160
  msgid "Sign up"
161
  msgstr "Iscriviti"
162
 
163
  #: mailchimp-for-wordpress/includes/functions/general.php:30
164
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
165
  msgid "Sign me up for the newsletter!"
166
  msgstr "Iscrivimi alla newsletter!"
167
 
168
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
169
  msgid ""
170
  "Thank you, your sign-up request was successful! Please check your e-mail "
171
  "inbox."
172
  msgstr "Graize, la tua richiesta di iscrizione ha avuto successo! Controlla la tua casella di posta."
173
 
174
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
175
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
176
  msgid "Oops. Something went wrong. Please try again later."
177
  msgstr "Oops. Qualcosa è andato storto. Riprova più tardi."
178
 
179
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
180
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
181
  msgid "Please provide a valid email address."
182
  msgstr "Si prega di fornire un indirizzo E-M@il valido."
183
 
184
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
185
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
186
  msgid "Given email address is already subscribed, thank you!"
187
  msgstr "Indirizzo E-M@il inserito è già iscritto, grazie!"
188
 
189
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
190
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
191
  msgid "Please complete the CAPTCHA."
192
  msgstr "Si prega di compilare il CAPTCHA."
193
 
194
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
195
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
196
  msgid "Please fill in the required fields."
197
  msgstr "Si prega di compilare i campi obbligatori."
198
 
260
  msgid "No"
261
  msgstr "No"
262
 
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
266
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
267
  msgid "MailChimp for WordPress - Error"
268
  msgstr "MailChimp per WordPress - Errore"
269
 
270
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
271
  msgid ""
272
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
273
  "settings</a>."
274
  msgstr "Seleziona una lista da sottoscrivere nelle <a href=\"%s\">impostazioni checkbox</a>."
275
 
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
277
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
278
  msgid "This message is only visible to administrators for debugging purposes."
279
  msgstr "Questo messaggio è visibile solo agli amministratori per scopi di debug."
280
 
281
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
282
  msgid ""
283
  "The MailChimp server returned the following error message as a response to "
284
  "our sign-up request:"
285
  msgstr "Il server MailChimp ha restituito il seguente messaggio di errore come risposta alla tua richiesta di iscrizione:"
286
 
287
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
288
  msgid "This is the data that was sent to MailChimp:"
289
  msgstr "Questi sono i dati che sono stati inviati a MailChimp:"
290
 
291
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
292
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
293
  msgid "Email address:"
294
  msgstr "Indirizzo e-mail:"
295
 
296
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
297
  msgid "Merge variables:"
298
  msgstr "Unisci variabili:"
299
 
457
  msgid "Select \"yes\" if the checkbox appears in a weird place."
458
  msgstr "Selezionare \"si\" se la casella di controllo deve apparire in un posto bizzarro."
459
 
460
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
461
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
462
+ msgid "WooCommerce checkbox position"
463
+ msgstr "Posizione casella di controllo WooCommerce"
464
+
465
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
466
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
467
+ msgid "After the billing details"
468
+ msgstr "Dopo i dettagli di pagamento"
469
+
470
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
471
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
472
+ msgid "After the additional information"
473
+ msgstr "Dopo le informazioni aggiuntive"
474
+
475
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
476
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
477
+ msgid ""
478
+ "Choose the position for the checkbox in your WooCommerce checkout form."
479
+ msgstr "Scegli la posizione per il controllo a selezione multipla nel tuo modulo di pagamento di WooCommerce"
480
+
481
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
482
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
483
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
484
  msgid "Form Settings"
485
  msgstr "Settaggi Modulo"
504
  msgid "Yes, load basic form styles"
505
  msgstr "Si, carica il foglio di stile di base"
506
 
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
508
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
509
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
510
+ msgid "(PRO ONLY)"
511
+ msgstr "(SOLO PRO)"
512
+
513
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
514
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
515
  msgid "Yes, load my custom form styles"
572
  msgstr "Modulo mark-up"
573
 
574
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
575
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
576
  msgid "Your form is missing the following (required) form fields:"
577
  msgstr "Nel modulo mancano i seguenti campi obbligatori:"
578
 
704
  msgid "HTML tags like %s are allowed in the message fields."
705
  msgstr "I tag HTML come %s sono ammessi nel campo messaggio."
706
 
707
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
708
+ msgid "Building your sign-up form"
709
+ msgstr ""
710
+
711
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
712
+ msgid ""
713
+ "At a minimum, your form should include just an %s field and a submit button."
714
+ msgstr ""
715
+
716
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
717
+ msgid ""
718
+ "Add more form fields if your selected lists require more fields. Field names"
719
+ " should match the field tags of the selected lists. Use the \"Add a new "
720
+ "field\" tool to have the HTML generated for you."
721
+ msgstr ""
722
+
723
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
724
+ msgid "Form Styling"
725
+ msgstr ""
726
+
727
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
728
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
729
+ msgstr ""
730
+
731
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
732
+ msgid ""
733
+ "You can add the CSS rules to your theme stylesheet using the <a "
734
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
735
+ " plugin like %s"
736
+ msgstr ""
737
+
738
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
739
+ msgid ""
740
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
741
+ "selectors you can use to target the different form elements."
742
+ msgstr ""
743
+
744
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
745
+ msgid ""
746
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
747
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
748
+ "lets you customize form styles without writing any code."
749
+ msgstr ""
750
+
751
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
752
  msgid "Form variables"
753
  msgstr "Variabili modulo"
754
 
755
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
756
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
757
  msgid "Use the following variables to add some dynamic content to your form."
758
  msgstr "Utilizzare le seguenti variabili per aggiungere alcuni contenuti dinamici al form."
759
 
760
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
761
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
762
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
763
+ msgstr ""
764
+
765
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
766
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
767
  msgid "Replaced with the form response (error or success messages)."
768
  msgstr "Sostituite con il Modulo di Risposta (messaggi di errore o di successo)."
769
 
770
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
771
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
772
  msgid "Replaced with a captcha field."
773
  msgstr "Sostituite con il campo captcha."
774
 
775
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
776
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
777
  msgid "Replaced with the number of subscribers on the selected list(s)"
778
  msgstr "Sostituite con il numero di iscritti della lista/liste selezionata/e"
779
 
780
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
781
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
782
  msgid "Replaced with the current site language, eg: %s"
783
  msgstr "Sostituite con la lingua corrente del sito, eg: %s"
784
 
785
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
786
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
787
  msgid "Replaced with the visitor's IP address"
788
  msgstr "Sostituite con 'indirizzo IP del visitatore"
789
 
790
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
791
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
792
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
793
  msgstr "Sostituite con la data corrente (yyyy/mm/dd eg: %s)"
794
 
795
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
796
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
797
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
798
  msgstr "Sostituite con l'ora corrente (hh:mm:ss eg: %s)"
799
 
800
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
801
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
802
  msgid ""
803
  "Replaced with the logged in user's email (or nothing, if there is no logged "
804
  "in user)"
805
  msgstr "Sostituite con l'E-M@il dell'utente (o niente, se non vi è alcun utente collegato)"
806
 
807
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
808
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
809
  msgid "First name of the current user"
810
  msgstr "Nome dell'utente corrente"
811
 
812
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
813
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
814
  msgid "Last name of the current user"
815
  msgstr "Cognome dell'utente corrente"
816
 
817
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
818
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
819
  msgid "Current user ID"
820
  msgstr "Username Corrente"
821
 
822
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
823
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
824
  msgid "Current URL"
825
  msgstr "URL Corrente"
826
 
908
 
909
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
910
  msgid ""
911
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
912
+ "translated in your language or do you spot errors with the current "
913
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
914
+ "translation project and click \"help translate\"</a>."
915
+ msgstr ""
916
+
917
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
918
+ msgid ""
919
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
920
  "now</a> for an even better plugin, you will love it."
921
  msgstr "Ti piace questo plugin? <a href=\"%s\"> Aggiorna a MailChimp per WordPress Pro ora </a> per un plugin ancora migliore, ti piacerà."
922
 
923
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
924
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
925
  msgid ""
926
  "This plugin is not developed by or affiliated with MailChimp in any way."
927
  msgstr "Questo plugin non è sviluppato da o affiliato con MailChimp in alcun modo."
947
  msgstr "Dimostra il tuo apprezzamento"
948
 
949
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
950
+ msgid "Upgrade to MailChimp for WordPress Pro"
951
+ msgstr ""
952
+
953
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
954
  msgid "Leave a %s plugin review on WordPress.org"
955
  msgstr "Lascia una recensione del plugin %s su WordPress.org"
956
 
957
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
958
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
959
  msgstr "Sto usando MailChimp per WordPress di @DannyvanKooten - E' fantastico!"
960
 
961
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
962
  msgid "Tweet about MailChimp for WordPress"
963
  msgstr ""
964
 
965
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
966
  msgid ""
967
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
968
+ "page</a>."
969
  msgstr ""
970
 
971
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
972
  msgid "Vote \"works\" on the WordPress.org plugin page"
973
  msgstr ""
974
 
975
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
976
+ msgid "About the developer"
977
+ msgstr ""
978
+
979
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
980
  msgid ""
981
  "This plugin has an even better premium version, I am sure you will love it."
991
  msgid "More information about MailChimp for WP Pro"
992
  msgstr ""
993
 
994
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
995
  msgid "Documentation"
996
  msgstr "Documentazione"
997
 
998
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
999
  msgid "Save Form"
1000
  msgstr "Salva Modulo"
1001
 
1002
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1003
  msgid "Update Form"
1004
  msgstr "Aggiorna Modulo"
1005
 
1006
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1007
  msgid "Back to general form settings"
1008
  msgstr "Torna alle impostazioni generali"
1009
 
1010
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1011
  msgid "Form updated."
1012
  msgstr "Modulo aggiornato."
1013
 
1014
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1015
  msgid "Form saved."
1016
  msgstr "Modulo salvato."
1017
 
1018
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1019
  msgid "Optional Settings"
1020
  msgstr "Settaggi Opzionali"
1021
 
1022
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1023
  msgid "Form Variables"
1024
  msgstr "Variabili Modulo"
1025
 
1026
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1027
  msgid "MailChimp & License"
1028
  msgstr "MailChimp & Licenza"
1029
 
1030
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1031
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1032
  msgid "Reports"
1033
  msgstr "Rapporti"
1034
 
1035
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1036
  msgid ""
1037
  "Please make sure the plugin is connected to MailChimp. <a "
1038
  "href=\"%s\">Provide a valid API key.</a>"
1039
  msgstr "Si prega di assicurarsi che il plugin sia collegato a MailChimp. <a href=\"%s\">Inserire una chiave API valida.</a>"
1040
 
1041
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1042
  msgid "End date can't be before the start date"
1043
  msgstr "La data di fine non puo' essere antecedente alla data di inizio"
1044
 
1045
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1046
  msgid ""
1047
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1048
  "page."
1049
  msgstr "Hai disattivato il log utilizzando il %s filtro. Riattivalo per utilizzare le relazioni di pagina."
1050
 
1051
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1052
  msgid ""
1053
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1054
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1065
  msgid "%sShow generated CSS%s"
1066
  msgstr "%sMostra CSS generato%s"
1067
 
1068
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1069
  msgid ""
1070
  "To apply these styles on your website, select \"load custom form styles\" in"
1071
  " the %sform settings%s"
1072
  msgstr "Per applicare questi stili sul tuo sito web, selezionare \"caricare stili di modulo personalizzato\" nel %s moduloimpostazioni di %s"
1073
 
1074
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1075
  msgid "The %sCSS Stylesheet%s has been created."
1076
  msgstr "Il %sCSS foglio di stile%s è stato creato."
1077
 
1109
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1110
  msgstr "Hai raggiunto il limite di attivazione. È necessario <a href=\"%s\">resettare</a> o <a href=\"%s\">aggiornare la tua licenza</a> per usarla su questo sito."
1111
 
1112
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1113
  msgid ""
1114
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1115
+ "you want to use it again."
1116
+ msgstr ""
1117
 
1118
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1119
  msgid "Failed to activate your license, your license key seems to be invalid."
1120
  msgstr "Impossibile attivare la licenza, la chiave di licenza sembra non essere valida."
1121
 
1122
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1123
  msgid "Your %s license has been deactivated."
1124
  msgstr "La vostra licenza %s non è attiva."
1125
 
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1128
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1129
+ msgid ""
1130
+ "Your plugin license has expired. You will no longer have access to plugin "
1131
+ "updates unless you <a href=\"%s\">renew your license</a>."
1132
+ msgstr ""
1133
+
1134
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1135
  msgid "Failed to deactivate your %s license."
1136
  msgstr "Impossibile disattivare la licenza %s."
1137
 
1138
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1139
  msgid "Request error: \"%s\""
1140
  msgstr "Richiesta di errore: \"%s\""
1141
 
1142
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1143
  msgid "%s: License Settings"
1144
  msgstr "%s: Impostazioni licenza"
1145
 
1174
  msgstr "Stai ricevendo gli aggiornamenti"
1175
 
1176
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1177
+ msgid "EXPIRED"
1178
+ msgstr ""
1179
 
1180
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1181
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1182
  msgid "you are <strong>not</strong> receiving updates."
1183
  msgstr "tu <strong>non</strong> stai ricevendo gli aggiornamenti."
1184
 
1185
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1186
+ msgid "INACTIVE"
1187
+ msgstr "INATTIVO"
1188
+
1189
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1190
  msgid "Toggle license status"
1191
  msgstr "Toggle stato licenza"
1192
 
1193
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1194
  msgid "Deactivate License"
1195
  msgstr "Disattivare Licenza"
1196
 
1197
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1198
  msgid ""
1199
  "(deactivate your license so you can activate it on another WordPress site)"
1200
  msgstr "(disattivare la licenza in modo da poterla attivare su un altro sito WordPress)"
1201
 
1202
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1203
  msgid "Activate License"
1204
  msgstr "Attivare Licenza"
1205
 
1206
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1207
  msgid "Please enter a license key in the field below first."
1208
  msgstr "Prima inserisci una chiave di licenza nel campo sottostante."
1209
 
1210
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1211
  msgid "License Key"
1212
  msgstr "Chiave Licenza"
1213
 
1214
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1215
  msgid "Paste your license key here, as found in the email receipt."
1216
  msgstr "Incollare la chiave di licenza qui, come si trova nella ricevuta email."
1217
 
1218
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1219
  msgid "You defined your license key using the %s PHP constant."
1220
  msgstr "Definisci la tua chiave di licenza usando la %s costante PHP."
1221
 
1222
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1223
  msgid "Your %s license will expire on %s."
1224
  msgstr "La tua %s licenza scadrà il %s."
1225
 
1226
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1227
  msgid "%sRenew your license now%s."
1228
  msgstr "%sRinnova ora la tua licenza%s."
1229
 
1237
  " correct form ID."
1238
  msgstr "<strong> Errore: </ strong> modulo di iscrizione non trovato. Si prega di verificare se è stato utilizzato l'ID di modulo corretto."
1239
 
1240
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1241
+ msgid "New MailChimp Sign-Up"
1242
+ msgstr ""
1243
+
1244
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1245
  msgid "New Sign-Up"
1246
  msgstr "Nuova iscrizione"
1247
 
1248
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1249
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1250
  msgstr "<strong>%s</ strong> firmato a %s su %s utilizzando il modulo \"%s\"."
1251
 
1252
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1253
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1254
+ msgid "List"
1255
+ msgstr "Lista"
1256
+
1257
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1258
+ msgid "Other fields"
1259
+ msgstr ""
1260
+
1261
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1262
  msgid ""
1263
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1264
  "be added to the selected MailChimp lists until they confirm their email "
1265
  "address."
1266
  msgstr "Nota che hai attivato double opt-in per il \"%s\" modulo. Gli utenti non verranno aggiunti alle liste MailChimp selezionate fino a quando non confermano il loro indirizzo email."
1267
 
1268
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1269
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1270
  msgstr "Questa email è stata auto-inviata da MailChimp per WordPress."
1271
 
1272
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1273
+ msgid "IP Address"
1274
+ msgstr ""
1275
+
1276
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1277
  msgid "MailChimp for WP Form"
1278
  msgstr "Modulo MailChimp per WP"
1299
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1300
  msgstr "Non hai alcun modulo di iscrizione. <a href=\"%s\"> Creane uno adesso. </a>"
1301
 
1302
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1303
  msgid ""
1304
  "Thank you, your sign-up request was successful! Please check your email "
1305
  "inbox to confirm."
1310
  msgstr "ID"
1311
 
1312
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1314
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1315
  msgid "Form"
1316
  msgstr "Modulo"
1317
 
1357
  msgid "Email"
1358
  msgstr "E-M@il"
1359
 
 
 
 
 
1360
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1361
  msgid "Type"
1362
  msgstr "Tipo"
1366
  msgstr "Origine"
1367
 
1368
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1369
+ msgid "Data"
1370
+ msgstr ""
1371
 
1372
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1373
  msgid "Subscribed"
1378
  msgstr "Log elementi eliminati."
1379
 
1380
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1381
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1382
  msgid "Comment"
1383
  msgstr "Commento"
1384
 
1386
  msgid "deleted"
1387
  msgstr "cancellato"
1388
 
1389
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1390
  msgid "Registration"
1391
  msgstr "Registrazione"
1392
 
1393
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1394
  msgid "MultiSite registration"
1395
  msgstr "Registrazione MultiSito"
1396
 
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1398
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1399
  msgid "Checkout"
1400
  msgstr "Cassa"
1401
 
1402
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1403
  msgid "Contact Form 7"
1404
  msgstr "Modulo Contatti 7"
1405
 
1406
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1407
  msgid "bbPress: New Topic"
1408
  msgstr "bbPress: Nuovo argomento"
1409
 
1410
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1411
  msgid "bbPress: New Reply"
1412
  msgstr "bbPress: Nuova risposta"
1413
 
1414
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1415
  msgid "Other Form"
1416
  msgstr "Altro modulo"
1417
 
1418
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1419
  msgid "No subscribe requests found."
1420
  msgstr "Richieste iscritti non trovate."
1421
 
1422
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1423
  msgid "All"
1424
  msgstr "Tutto"
1425
 
1426
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1427
  msgid "Checkbox"
1428
  msgstr "Controllo a selezione multipla"
1429
 
1501
  "forms."
1502
  msgstr ""
1503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1505
  msgid "Custom label texts"
1506
  msgstr "Etichetta personalizzata"
languages/mailchimp-for-wp-ja_JP.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ja_JP/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ja_JP/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-lt_LT.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/lt_LT/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/lt_LT/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-ms_MY.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ms_MY/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ms_MY/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-nl_NL.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-11-27 09:59+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "Instellingen"
32
 
@@ -43,80 +43,79 @@ msgid "MailChimp Settings"
43
  msgstr "MailChimp Instellingen"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "Checkboxes"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Formulieren"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Reactieformulier"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Registratieformulier"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "MultiSite formulieren"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "BuddyPress registratie"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr "(ALLEEN IN PRO)"
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr "MailChimp cache met succes vernieuwd."
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr "Het is niet gelukt om de MailChimp cache te legen - probeer het alsjeblieft later opnieuw."
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr "Een EMAIL veld. Voorbeeld: <code>%s</code>"
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr "Een verzendknop. Voorbeeld: <code>%s</code>"
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr "Inschrijven"
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr "Een '%s' veld"
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr "MailChimp Fout:"
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr "Selecteer ten minste 1 lijst om op in te schrijven."
122
 
@@ -145,53 +144,54 @@ msgid ""
145
  msgstr "Je kan je formulier wijzigen op de %sMailChimp voor WordPress instellingen pagina%s."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr "Emailadres"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr "Jouw emailadres"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr "Inschrijven"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Schrijf me in voor de nieuwsbrief!"
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Bedankt, je inschrijfverzoek was succesvol! Check alsjeblieft je email inbox voor een bevestiging."
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Oeps, er ging iets fout. Probeer het aub later opnieuw."
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr "Geef een geldig emailadres in."
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Dit emailadres is reeds ingeschreven, dankjewel!"
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Vul aub een geldige CAPTCHA in."
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr "Vul aub de verplichte velden in."
197
 
@@ -259,39 +259,40 @@ msgstr "Ja"
259
  msgid "No"
260
  msgstr "Nee"
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp voor WordPress - Fout"
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Selecteer een lijst om op in te schrijven in de <a href=\"%s\">checkbox instellingen</a>."
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Dit bericht is enkel zichtbaar voor admins (voor debugging doeleinden)."
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "De MailChimp server retourneerde de volgende foutmelding:"
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Deze data werd naar MailChimp gestuurd:"
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr "Emailadres:"
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr "Lijst variabelen"
297
 
@@ -455,8 +456,29 @@ msgstr "Laad standaard CSS?"
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Selecteer \"ja\" als de checkbox op een vreemde plaats verschijnt."
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr "Formulier Instellingen"
@@ -481,6 +503,12 @@ msgstr "Laad formulier stijlen (CSS)?"
481
  msgid "Yes, load basic form styles"
482
  msgstr "Ja, laad standaard formulier stijlen"
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -543,7 +571,7 @@ msgid "Form mark-up"
543
  msgstr "Formulier Structuur"
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr "Je formulier mist de volgende (verplichte) velden:"
549
 
@@ -675,74 +703,123 @@ msgstr "Algemene foutmelding"
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr "HTML tags als %s zijn toegestaan in de meldingteksten."
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr "Formulier variabelen"
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr "Gebruik de volgende variabelen om wat dynamische inhoud aan je formulier toe te voegen"
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
689
  msgid "Replaced with the form response (error or success messages)."
690
  msgstr "Wordt vervangen door de formulier response (fout- en succesmeldingen)."
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
  msgid "Replaced with a captcha field."
695
  msgstr "Wordt vervangen door een Captcha veld."
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
  msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr "Vervangen door het aantal subscribers op de geselecteerde lijst(en)"
701
 
702
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
  msgid "Replaced with the current site language, eg: %s"
705
  msgstr "Vervangen door de huidige site taal, bijv: %s"
706
 
707
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
  msgid "Replaced with the visitor's IP address"
710
  msgstr "Vervangen door het IP-adres van de bezoeker"
711
 
712
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr "Vervangen door de huidige datum (jjjj/mm/dd bijv: %s)"
716
 
717
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr "Vervangen door de huidige tijd (uu:mm:ss bijv: %s)"
721
 
722
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
  msgid ""
725
  "Replaced with the logged in user's email (or nothing, if there is no logged "
726
  "in user)"
727
  msgstr "Vervangen door het emailadres van de ingelogde gebruiker (of niets wanneer de bezoeker niet ingelogd is)"
728
 
729
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
  msgid "First name of the current user"
732
  msgstr "Voornaam van de ingelogde bezoeker"
733
 
734
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
  msgid "Last name of the current user"
737
  msgstr "Achternaam van de ingelogde bezoeker"
738
 
739
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
  msgid "Current user ID"
742
  msgstr "ID van de ingelogde bezoeker"
743
 
744
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
746
  msgid "Current URL"
747
  msgstr "Huidige URL"
748
 
@@ -830,11 +907,20 @@ msgstr "Selecteer eerst ten minste 1 lijst."
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
 
 
 
 
 
 
 
 
833
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
  "now</a> for an even better plugin, you will love it."
835
  msgstr "Gebruik je deze plugin met plezier? <a href=\"%s\">Upgrade nu naar MailChimp for WordPress Pro</a> voor een nog betere plugin. Gegarandeerd!"
836
 
837
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
838
  msgid ""
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
  msgstr "Deze plugin is niet ontwikkeld of verbonden met MailChimp op welke manier dan ook."
@@ -860,27 +946,35 @@ msgid "Show a token of your appreciation"
860
  msgstr "Toon een blijk van waardering"
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
 
 
 
 
863
  msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr "Laat een %s plugin review achter op WordPress.org"
865
 
866
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
  msgstr "Ik gebruik de MailChimp for WordPress plugin door @DannyvanKooten - het is geweldig!"
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
  msgstr "Tweet over MailChimp for WordPress"
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
- msgstr "Review de plugin op je website en link naar de <a href=\"%s\">plugin pagina</a>."
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
882
  msgstr "Zeg \"works\" op de WordPress.org plugin pagina"
883
 
 
 
 
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
@@ -896,69 +990,64 @@ msgstr "Pro functionaliteiten zijn o.a. betere en meerdere formulieren, geavance
896
  msgid "More information about MailChimp for WP Pro"
897
  msgstr "Meer informatie over MailChimp for WordPress Pro"
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr "Documentatie"
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr "Formulier opslaan"
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr "Formulier updaten"
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr "Terug naar generieke formulier instellingen."
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr "Formulier geupdate"
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr "Formulier opgeslagen"
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr "Optionele Instellingen"
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr "Formulier Variabelen"
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr "MailChimp & Licentie"
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr "Rapporten"
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr "%s checkout"
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr "Zorg aub dat de plugin een connectie met MailChimp heeft. <a href=\"%s\">Geef een geldige API sleutel in.</a>"
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr "Einddatum kan niet vóór de startdatum liggen"
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr "Je hebt logging uitgeschakeld met behulp van de %s filter. Om de Reports pagina te kunnen gebruiken moet logging ingeschakeld zijn."
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1064,13 @@ msgstr "De stylesheet kon niet worden gecreëerd. Voeg de gegenereerde CSS manue
975
  msgid "%sShow generated CSS%s"
976
  msgstr "%sToon CSS%s"
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr "Selecteer \"laad custom formulier stijlen\" in de %sformulier instellingen%s om deze stijlen op je website te gebruiken"
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr "De %sCSS Stylesheet%s is gecreëerd. "
987
 
@@ -1019,29 +1108,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr "Je zit aan het activatielimiet van je licentie. Je kunt je <a href=\"%s\">licentie resetten</a> of <a href=\"%s\">deze upgraden</a> om deze weer te kunnen gebruiken."
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
- msgstr "Je licentie is verlopen. Je moet je <a href=\"%s\">licentie verlengen</a> om deze weer te kunnen gebruiken."
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr "Je licentie lijkt invalide te zijn."
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr "Je %s licentie is gedeactiveerd."
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr "Het is niet gelukt je %s licentie te deactiveren."
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr "Request fout: \"%s\""
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr "%s: Licentie Instellingen"
1047
 
@@ -1076,51 +1173,56 @@ msgid "you are receiving updates"
1076
  msgstr "je ontvangt plugin updates"
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
- msgstr "INACTIEF"
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
  msgstr "je ontvangt <strong>geen</strong> plugin updates."
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr "Activeer/deactiveer licentie status"
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr "Deactiveer Licentie"
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr "(deactiveer je licentie zodat je deze op een andere website kunt activeren)"
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr "Activeer Licentie"
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr "Vul aub een licentiecode in het veld hieronder in."
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr "Licentiecode"
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr "Plak je licentiecode hier, zoals die in de aankoopemail staat."
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr "Je hebt je licentiecode gedefinieerd met behulp van de PHP constante %s."
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr "Je %s licentie verloopt op %s."
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr "%sVernieuw je licentie nu%s"
1126
 
@@ -1134,25 +1236,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr "<strong>Fout:</strong> Inschrijfformulier niet gevonden. Check aub of je het correcte formulier ID gebruikt hebt."
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr "Nieuwe inschrijving"
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr "<strong>%s</strong> schreef zich om %s op %s in met het formulier \"%s\""
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr "PS. Je hebt \"double opt-in\" aanstaan voor het formulier \"%s\". Het hierboven weergegeven emailadres zal niet aan de geselecteerde MailChimp lijst(en) worden toegevoegd totdat deze zijn of haar emailadres heeft bevestigd."
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr "Deze email is gestuurd door de MailChimp for WordPress plugin."
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr "MailChimp voor WP formulier"
@@ -1179,7 +1298,7 @@ msgstr "Selecteer het formulier om te tonen"
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr "Je hebt nog geen inschrijfformulieren. <a href=\"%s\">Maak er een.</a>"
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1309,8 @@ msgid "ID"
1190
  msgstr "ID"
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr "Formulier"
1197
 
@@ -1237,10 +1356,6 @@ msgstr "Subscriber Logs"
1237
  msgid "Email"
1238
  msgstr "Emailadres"
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr "Lijst"
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr "Type"
@@ -1250,8 +1365,8 @@ msgid "Source"
1250
  msgstr "Bron"
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
- msgstr "Extra data"
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1257
  msgid "Subscribed"
@@ -1262,7 +1377,7 @@ msgid "Log items deleted."
1262
  msgstr "Log items verwijderd."
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr "Reactie"
1268
 
@@ -1270,44 +1385,44 @@ msgstr "Reactie"
1270
  msgid "deleted"
1271
  msgstr "verwijderd"
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr "Registratie"
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr "MultiSite registratie"
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr "Checkout"
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr "Contact Form 7"
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr "bbPress: Nieuw Onderwerp"
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr "bbPress: Nieuwe Reactie"
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr "Ander Formulier"
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr "Geen inschrijfverzoeken gevonden."
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr "Alle"
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr "Checkbox"
1313
 
@@ -1385,23 +1500,6 @@ msgid ""
1385
  "forms."
1386
  msgstr "Gebruik %s in je Contact Form 7 opmaak om een sign-up checkbox toe te voegen aan je CF7 formulieren."
1387
 
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr "WooCommerce checkbox positie"
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr "Na de factuurdetails"
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr "Na de additionele informatie"
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr "Kies de positie voor de checkbox in je WooCommerce checkout formulier."
1404
-
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
1407
  msgstr "Custom label teksten"
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:30+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/nl_NL/)\n"
13
  "MIME-Version: 1.0\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "Instellingen"
32
 
43
  msgstr "MailChimp Instellingen"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "Checkboxes"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Formulieren"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr "Deze optie is enkel beschikbaar in de premium versie van de MailChimp for WordPress plugin."
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Reactieformulier"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Registratieformulier"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "MultiSite formulieren"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "BuddyPress registratie"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr "%s checkout"
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr "MailChimp cache met succes vernieuwd."
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr "Het is niet gelukt om de MailChimp cache te legen - probeer het alsjeblieft later opnieuw."
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
  msgstr "Een EMAIL veld. Voorbeeld: <code>%s</code>"
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
  msgstr "Een verzendknop. Voorbeeld: <code>%s</code>"
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
  msgstr "Inschrijven"
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
  msgstr "Een '%s' veld"
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr "Selecteer ten minste 1 lijst om op in te schrijven."
121
 
144
  msgstr "Je kan je formulier wijzigen op de %sMailChimp voor WordPress instellingen pagina%s."
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr "Emailadres"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr "Jouw emailadres"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr "Inschrijven"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Schrijf me in voor de nieuwsbrief!"
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Bedankt, je inschrijfverzoek was succesvol! Check alsjeblieft je email inbox voor een bevestiging."
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Oeps, er ging iets fout. Probeer het aub later opnieuw."
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr "Geef een geldig emailadres in."
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Dit emailadres is reeds ingeschreven, dankjewel!"
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Vul aub een geldige CAPTCHA in."
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
  msgstr "Vul aub de verplichte velden in."
197
 
259
  msgid "No"
260
  msgstr "Nee"
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp voor WordPress - Fout"
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Selecteer een lijst om op in te schrijven in de <a href=\"%s\">checkbox instellingen</a>."
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Dit bericht is enkel zichtbaar voor admins (voor debugging doeleinden)."
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "De MailChimp server retourneerde de volgende foutmelding:"
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Deze data werd naar MailChimp gestuurd:"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
  msgstr "Emailadres:"
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
  msgstr "Lijst variabelen"
298
 
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Selecteer \"ja\" als de checkbox op een vreemde plaats verschijnt."
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr "WooCommerce checkbox positie"
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr "Na de factuurdetails"
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr "Na de additionele informatie"
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr "Kies de positie voor de checkbox in je WooCommerce checkout formulier."
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
  msgstr "Formulier Instellingen"
503
  msgid "Yes, load basic form styles"
504
  msgstr "Ja, laad standaard formulier stijlen"
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "(ALLEEN IN PRO)"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr "Formulier Structuur"
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr "Je formulier mist de volgende (verplichte) velden:"
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr "HTML tags als %s zijn toegestaan in de meldingteksten."
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr "Maken van je inschrijfformulier"
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr "Je formulier moet ten minste een %s veld en een verzendknop bevatten."
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr "Voeg meer formuliervelden toe als je lijst meer velden verplicht. Veldnamen moeten overeenkomen met de tags van je lijstvelden. Gebruik \"Voeg een nieuw veld toe\" om de HTML te laten genereren."
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr "Formulier Ontwerpen"
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr "Wijzig de visuele weergave van je formulier door CSS regels op te stellen voor %s."
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr "Je kan de CSS regels aan het stijlbestand van je thema toevoegen door de <a href=\"%s\">Thema Editor</a> te gebruiken of door te wijzigen over FTP. Als 'n alternatief kun je een plugin als %s gebruiken."
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr "De <a href=\"%s\">veelgestelde vragen pagina van de plugin</a> geeft een overzicht weer van de verschillende CSS selectors die je kunt gebruiken om de verschillende formulier elementen te targeten."
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr "Als je een makkelijkere manier nodig hebt om je formulier te ontwerpen, <a href=\"%s\">koop dan de premium versie van MailChimp for WordPress</a>. Het heeft een gemakkelijke \"Stijl Ontwerper\" welke je kunt gebruiken om de visuele weergave van je formulier aan te passen zonder code te hoeven schrijven."
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr "Formulier variabelen"
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr "Gebruik de volgende variabelen om wat dynamische inhoud aan je formulier toe te voegen"
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
+ msgstr "Vervangen door het emailadres van de bezoeker (als deze gegeven is in de URL of door middel van een cookie)."
763
+
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
  msgid "Replaced with the form response (error or success messages)."
767
  msgstr "Wordt vervangen door de formulier response (fout- en succesmeldingen)."
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
  msgid "Replaced with a captcha field."
772
  msgstr "Wordt vervangen door een Captcha veld."
773
 
774
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
  msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr "Vervangen door het aantal subscribers op de geselecteerde lijst(en)"
778
 
779
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
  msgid "Replaced with the current site language, eg: %s"
782
  msgstr "Vervangen door de huidige site taal, bijv: %s"
783
 
784
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
  msgid "Replaced with the visitor's IP address"
787
  msgstr "Vervangen door het IP-adres van de bezoeker"
788
 
789
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr "Vervangen door de huidige datum (jjjj/mm/dd bijv: %s)"
793
 
794
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
797
  msgstr "Vervangen door de huidige tijd (uu:mm:ss bijv: %s)"
798
 
799
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
  msgid ""
802
  "Replaced with the logged in user's email (or nothing, if there is no logged "
803
  "in user)"
804
  msgstr "Vervangen door het emailadres van de ingelogde gebruiker (of niets wanneer de bezoeker niet ingelogd is)"
805
 
806
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
  msgid "First name of the current user"
809
  msgstr "Voornaam van de ingelogde bezoeker"
810
 
811
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
  msgid "Last name of the current user"
814
  msgstr "Achternaam van de ingelogde bezoeker"
815
 
816
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
  msgid "Current user ID"
819
  msgstr "ID van de ingelogde bezoeker"
820
 
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr "Huidige URL"
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr "De MailChimp for WordPres plugin is op zoek naar vertalers. Is de plugin niet vertaald in jouw taal of heb je een fout in de vertalingen gespot? Helpen is makkelijk! Ga naar <a href=\"%s\">het vertaalproject op Transifex en klik op \"help translate\"</a>."
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr "Gebruik je deze plugin met plezier? <a href=\"%s\">Upgrade nu naar MailChimp for WordPress Pro</a> voor een nog betere plugin. Gegarandeerd!"
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr "Deze plugin is niet ontwikkeld of verbonden met MailChimp op welke manier dan ook."
946
  msgstr "Toon een blijk van waardering"
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
+ msgstr "Upgrade naar de premium versie van MailChimp for WordPress"
951
+
952
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
  msgid "Leave a %s plugin review on WordPress.org"
954
  msgstr "Laat een %s plugin review achter op WordPress.org"
955
 
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr "Ik gebruik de MailChimp for WordPress plugin door @DannyvanKooten - het is geweldig!"
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr "Tweet over MailChimp for WordPress"
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
+ msgstr "Schrijf over de plugin op je blog en link naar <a href=\"%s\">de plugin pagina</a>."
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr "Zeg \"works\" op de WordPress.org plugin pagina"
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr "Over de ontwikkelaar"
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr "Meer informatie over MailChimp for WordPress Pro"
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr "Documentatie"
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr "Formulier opslaan"
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr "Formulier updaten"
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr "Terug naar generieke formulier instellingen."
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr "Formulier geupdate"
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr "Formulier opgeslagen"
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr "Optionele Instellingen"
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr "Formulier Variabelen"
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr "MailChimp & Licentie"
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr "Rapporten"
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr "Zorg aub dat de plugin een connectie met MailChimp heeft. <a href=\"%s\">Geef een geldige API sleutel in.</a>"
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr "Einddatum kan niet vóór de startdatum liggen"
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr "Je hebt logging uitgeschakeld met behulp van de %s filter. Om de Reports pagina te kunnen gebruiken moet logging ingeschakeld zijn."
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr "%sToon CSS%s"
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr "Selecteer \"laad custom formulier stijlen\" in de %sformulier instellingen%s om deze stijlen op je website te gebruiken"
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr "De %sCSS Stylesheet%s is gecreëerd. "
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr "Je zit aan het activatielimiet van je licentie. Je kunt je <a href=\"%s\">licentie resetten</a> of <a href=\"%s\">deze upgraden</a> om deze weer te kunnen gebruiken."
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
+ msgstr "Je licentie is verlopen. Als je je licentie opnieuw wilt gebruiken <a href=\"%s\">moet je deze verlengen</a>."
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr "Je licentie lijkt invalide te zijn."
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr "Je %s licentie is gedeactiveerd."
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr "Je plugin licentie is verlopen. Je hebt niet langer toegang tot plugin updates tenzij je <a href=\"%s\">je licentie vernieuwt.</a>."
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr "Het is niet gelukt je %s licentie te deactiveren."
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr "Request fout: \"%s\""
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr "%s: Licentie Instellingen"
1144
 
1173
  msgstr "je ontvangt plugin updates"
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
+ msgstr "VERLOPEN"
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr "je ontvangt <strong>geen</strong> plugin updates."
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr "INACTIEF"
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr "Activeer/deactiveer licentie status"
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr "Deactiveer Licentie"
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr "(deactiveer je licentie zodat je deze op een andere website kunt activeren)"
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr "Activeer Licentie"
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr "Vul aub een licentiecode in het veld hieronder in."
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr "Licentiecode"
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr "Plak je licentiecode hier, zoals die in de aankoopemail staat."
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr "Je hebt je licentiecode gedefinieerd met behulp van de PHP constante %s."
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr "Je %s licentie verloopt op %s."
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr "%sVernieuw je licentie nu%s"
1228
 
1236
  " correct form ID."
1237
  msgstr "<strong>Fout:</strong> Inschrijfformulier niet gevonden. Check aub of je het correcte formulier ID gebruikt hebt."
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr "Nieuwe MailChimp inschrijving"
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr "Nieuwe inschrijving"
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr "<strong>%s</strong> schreef zich om %s op %s in met het formulier \"%s\""
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr "Lijst"
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr "Overige velden"
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr "PS. Je hebt \"double opt-in\" aanstaan voor het formulier \"%s\". Het hierboven weergegeven emailadres zal niet aan de geselecteerde MailChimp lijst(en) worden toegevoegd totdat deze zijn of haar emailadres heeft bevestigd."
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr "Deze email is gestuurd door de MailChimp for WordPress plugin."
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr "IP Adres"
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr "MailChimp voor WP formulier"
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr "Je hebt nog geen inschrijfformulieren. <a href=\"%s\">Maak er een.</a>"
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr "ID"
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr "Formulier"
1316
 
1356
  msgid "Email"
1357
  msgstr "Emailadres"
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr "Type"
1365
  msgstr "Bron"
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
+ msgstr "Data"
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1372
  msgid "Subscribed"
1377
  msgstr "Log items verwijderd."
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr "Reactie"
1383
 
1385
  msgid "deleted"
1386
  msgstr "verwijderd"
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr "Registratie"
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr "MultiSite registratie"
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr "Checkout"
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr "Contact Form 7"
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr "bbPress: Nieuw Onderwerp"
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr "bbPress: Nieuwe Reactie"
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr "Ander Formulier"
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr "Geen inschrijfverzoeken gevonden."
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr "Alle"
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr "Checkbox"
1428
 
1500
  "forms."
1501
  msgstr "Gebruik %s in je Contact Form 7 opmaak om een sign-up checkbox toe te voegen aan je CF7 formulieren."
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr "Custom label teksten"
languages/mailchimp-for-wp-no_NO.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-12-01 14:55+0000\n"
11
- "Last-Translator: Linus Alsing <linusoskar@outlook.com>\n"
12
  "Language-Team: Norwegian (Norway) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/no_NO/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "Innstillinger"
32
 
@@ -43,80 +43,79 @@ msgid "MailChimp Settings"
43
  msgstr "MailChimp innstillinger"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "Avkrysningsbokser"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Skjemaer"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Kommentar skjema"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Påmeldingsskjema"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "Multi-Site skjemaer"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "BuddyPress registrering"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr "(KUN PRO)"
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr "Fornyet MailChimp cache"
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr "Klarte ikke å fornye MailChimp cache - vennligst prøv igjen senere."
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr "Et E-POST felt"
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr "En send knapp"
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr "Meld på"
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr "Et '%s' felt"
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr "MailChimp Feil:"
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr "Velg minst én liste å abonnere på."
122
 
@@ -145,53 +144,54 @@ msgid ""
145
  msgstr "Du kan redigere ditt påmeldingsskjema i %s MailChimp for WordPress skjema instillinger %s."
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr "E-post adresse"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr "Din e-post adresse"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr "Registrer"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Meld meg på nyhetsbrevet!"
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Takk, din registrering er vellykket! Vennligst sjekk e-posten din."
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Oops. Noe gikk galt. Vennligst prøv på nytt senere."
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr "Vennligst oppgi en gyldig e-post adresse."
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Den angitte e-postadressen er allerede registrert, takk!"
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Vennligst fyll ut CAPTCHA."
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr "Vennligst fyll ut de obligatoriske feltene."
197
 
@@ -259,39 +259,40 @@ msgstr "Ja"
259
  msgid "No"
260
  msgstr "Nei"
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp for WordPress - Feil"
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Vennligst velg en liste å abonnere på i <a href=\"%s\"> sjekkboks instillinger."
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Denne meldingen er bare synlig for administratorer for \"debugging\" formål."
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "MailChimp- serveren returnerte følgende feilmelding som et svar på vår \"sign-up\" forespørsel. "
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Dette er den data som ble sendt til MailChimp:"
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr "E-post adresse:"
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr "Flett variabler:"
297
 
@@ -455,8 +456,29 @@ msgstr ""
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr ""
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr ""
@@ -481,6 +503,12 @@ msgstr ""
481
  msgid "Yes, load basic form styles"
482
  msgstr ""
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -543,7 +571,7 @@ msgid "Form mark-up"
543
  msgstr ""
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr ""
549
 
@@ -675,74 +703,123 @@ msgstr ""
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr ""
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr ""
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr ""
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
689
- msgid "Replaced with the form response (error or success messages)."
690
  msgstr ""
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
- msgid "Replaced with a captcha field."
695
  msgstr ""
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
- msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr ""
701
 
702
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
- msgid "Replaced with the current site language, eg: %s"
705
  msgstr ""
706
 
707
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
- msgid "Replaced with the visitor's IP address"
710
  msgstr ""
711
 
712
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr ""
716
 
717
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr ""
721
 
722
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
- msgid ""
725
- "Replaced with the logged in user's email (or nothing, if there is no logged "
726
- "in user)"
727
  msgstr ""
728
 
729
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
- msgid "First name of the current user"
 
 
732
  msgstr ""
733
 
734
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
- msgid "Last name of the current user"
737
  msgstr ""
738
 
739
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
- msgid "Current user ID"
742
  msgstr ""
743
 
744
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
746
  msgid "Current URL"
747
  msgstr ""
748
 
@@ -830,11 +907,20 @@ msgstr ""
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
 
 
 
 
 
 
 
 
833
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
  "now</a> for an even better plugin, you will love it."
835
  msgstr ""
836
 
837
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
838
  msgid ""
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
  msgstr ""
@@ -860,27 +946,35 @@ msgid "Show a token of your appreciation"
860
  msgstr ""
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
863
- msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr ""
865
 
866
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
  msgstr ""
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
  msgstr ""
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
  msgstr ""
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
882
  msgstr ""
883
 
 
 
 
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
@@ -896,69 +990,64 @@ msgstr ""
896
  msgid "More information about MailChimp for WP Pro"
897
  msgstr ""
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr ""
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr ""
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr ""
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr ""
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr ""
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr ""
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr ""
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr ""
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr ""
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr ""
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr ""
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr ""
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr ""
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr ""
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1064,13 @@ msgstr ""
975
  msgid "%sShow generated CSS%s"
976
  msgstr ""
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr ""
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr ""
987
 
@@ -1019,29 +1108,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr ""
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
  msgstr ""
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr ""
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr ""
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr ""
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr ""
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr ""
1047
 
@@ -1076,51 +1173,56 @@ msgid "you are receiving updates"
1076
  msgstr ""
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
  msgstr ""
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
  msgstr ""
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr ""
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr ""
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr ""
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr ""
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr ""
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr ""
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr ""
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr ""
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr ""
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr ""
1126
 
@@ -1134,25 +1236,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr ""
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr ""
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr ""
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr ""
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr ""
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr ""
@@ -1179,7 +1298,7 @@ msgstr ""
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr ""
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1309,8 @@ msgid "ID"
1190
  msgstr ""
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr ""
1197
 
@@ -1237,10 +1356,6 @@ msgstr ""
1237
  msgid "Email"
1238
  msgstr ""
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr ""
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr ""
@@ -1250,7 +1365,7 @@ msgid "Source"
1250
  msgstr ""
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
  msgstr ""
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1262,7 +1377,7 @@ msgid "Log items deleted."
1262
  msgstr ""
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr ""
1268
 
@@ -1270,44 +1385,44 @@ msgstr ""
1270
  msgid "deleted"
1271
  msgstr ""
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr ""
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr ""
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr ""
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr ""
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr ""
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr ""
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr ""
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr ""
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr ""
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr ""
1313
 
@@ -1385,23 +1500,6 @@ msgid ""
1385
  "forms."
1386
  msgstr ""
1387
 
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr ""
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr ""
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr ""
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr ""
1404
-
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
1407
  msgstr ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
11
+ "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Norwegian (Norway) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/no_NO/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "Innstillinger"
32
 
43
  msgstr "MailChimp innstillinger"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "Avkrysningsbokser"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Skjemaer"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr ""
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Kommentar skjema"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Påmeldingsskjema"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "Multi-Site skjemaer"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "BuddyPress registrering"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr ""
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr "Fornyet MailChimp cache"
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr "Klarte ikke å fornye MailChimp cache - vennligst prøv igjen senere."
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
  msgstr "Et E-POST felt"
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
  msgstr "En send knapp"
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
  msgstr "Meld på"
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
  msgstr "Et '%s' felt"
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr "Velg minst én liste å abonnere på."
121
 
144
  msgstr "Du kan redigere ditt påmeldingsskjema i %s MailChimp for WordPress skjema instillinger %s."
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr "E-post adresse"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr "Din e-post adresse"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr "Registrer"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Meld meg på nyhetsbrevet!"
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr "Takk, din registrering er vellykket! Vennligst sjekk e-posten din."
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Oops. Noe gikk galt. Vennligst prøv på nytt senere."
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr "Vennligst oppgi en gyldig e-post adresse."
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Den angitte e-postadressen er allerede registrert, takk!"
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Vennligst fyll ut CAPTCHA."
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
  msgstr "Vennligst fyll ut de obligatoriske feltene."
197
 
259
  msgid "No"
260
  msgstr "Nei"
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr "MailChimp for WordPress - Feil"
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr "Vennligst velg en liste å abonnere på i <a href=\"%s\"> sjekkboks instillinger."
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr "Denne meldingen er bare synlig for administratorer for \"debugging\" formål."
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr "MailChimp- serveren returnerte følgende feilmelding som et svar på vår \"sign-up\" forespørsel. "
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr "Dette er den data som ble sendt til MailChimp:"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
  msgstr "E-post adresse:"
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
  msgstr "Flett variabler:"
298
 
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr ""
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr ""
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr ""
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr ""
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr ""
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
  msgstr ""
503
  msgid "Yes, load basic form styles"
504
  msgstr ""
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "(KUN PRO)"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr ""
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr ""
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr ""
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr ""
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr ""
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr ""
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr ""
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr ""
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr ""
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr ""
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr ""
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
  msgstr ""
763
 
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
+ msgid "Replaced with the form response (error or success messages)."
767
  msgstr ""
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
+ msgid "Replaced with a captcha field."
772
  msgstr ""
773
 
774
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
+ msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr ""
778
 
779
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
+ msgid "Replaced with the current site language, eg: %s"
782
  msgstr ""
783
 
784
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
+ msgid "Replaced with the visitor's IP address"
787
  msgstr ""
788
 
789
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr ""
793
 
794
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
797
  msgstr ""
798
 
799
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
+ msgid ""
802
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
803
+ "in user)"
804
  msgstr ""
805
 
806
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
+ msgid "First name of the current user"
809
  msgstr ""
810
 
811
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
+ msgid "Last name of the current user"
814
  msgstr ""
815
 
816
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
+ msgid "Current user ID"
819
+ msgstr ""
820
+
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr ""
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr ""
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr ""
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr ""
946
  msgstr ""
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
  msgstr ""
951
 
952
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
+ msgid "Leave a %s plugin review on WordPress.org"
954
+ msgstr ""
955
+
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr ""
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr ""
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
  msgstr ""
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr ""
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr ""
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr ""
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr ""
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr ""
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr ""
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr ""
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr ""
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr ""
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr ""
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr ""
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr ""
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr ""
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr ""
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr ""
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr ""
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr ""
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr ""
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr ""
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr ""
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
  msgstr ""
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr ""
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr ""
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr ""
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr ""
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr ""
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr ""
1144
 
1173
  msgstr ""
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
  msgstr ""
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr ""
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr ""
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr ""
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr ""
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr ""
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr ""
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr ""
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr ""
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr ""
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr ""
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr ""
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr ""
1228
 
1236
  " correct form ID."
1237
  msgstr ""
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr ""
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr ""
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr ""
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr ""
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr ""
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr ""
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr ""
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr ""
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr ""
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr ""
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr ""
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr ""
1316
 
1356
  msgid "Email"
1357
  msgstr ""
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr ""
1365
  msgstr ""
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
  msgstr ""
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1377
  msgstr ""
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr ""
1383
 
1385
  msgid "deleted"
1386
  msgstr ""
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr ""
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr ""
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr ""
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr ""
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr ""
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr ""
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr ""
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr ""
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr ""
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr ""
1428
 
1500
  "forms."
1501
  msgstr ""
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr ""
languages/mailchimp-for-wp-pl_PL.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/pl_PL/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/pl_PL/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-pt_BR.po CHANGED
@@ -1,13 +1,14 @@
1
  # Copyright (C) 2014 Danny van Kooten
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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
- "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/pt_BR/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,14 +26,14 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr "Configurações"
31
 
32
  #: mailchimp-for-wordpress/includes/class-admin.php:149
33
  #: mailchimp-for-wordpress/includes/class-admin.php:163
34
  msgid "Upgrade to Pro"
35
- msgstr ""
36
 
37
  #: mailchimp-for-wordpress/includes/class-admin.php:160
38
  #: mailchimp-for-wordpress/includes/views/api-settings.php:12
@@ -42,90 +43,89 @@ msgid "MailChimp Settings"
42
  msgstr "Configurações MailChimp"
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr "Caixas de Seleção"
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
51
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
52
  msgid "Forms"
53
  msgstr "Formulários"
54
 
55
- #: mailchimp-for-wordpress/includes/class-admin.php:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr "Formulário de comentário"
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr "Formulário de Registro"
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr "Formulários Multisite"
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr "Registro no BuddyPress"
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
- msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr "Cache MailChimp renovado."
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr "Falha ao renovar o cache MailChimp - por favor tente novamente."
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
- msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
- msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
- msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
- msgstr ""
113
-
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
 
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
- msgstr ""
121
 
122
  #: mailchimp-for-wordpress/includes/class-widget.php:20
123
  msgid "MailChimp Sign-Up Form"
124
- msgstr ""
125
 
126
  #: mailchimp-for-wordpress/includes/class-widget.php:21
127
  msgid "Displays your MailChimp for WordPress sign-up form"
128
- msgstr ""
129
 
130
  #: mailchimp-for-wordpress/includes/class-widget.php:62
131
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:69
@@ -141,58 +141,59 @@ msgstr "Título:"
141
  msgid ""
142
  "You can edit your sign-up form in the %sMailChimp for WordPress form "
143
  "settings%s."
144
- msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr "Email"
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr "Seu endereço de email"
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr "Cadastrar"
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr "Cadastrar na newsletter!"
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr "Oops. Alguma coisa deu errado. Por favor tente novamente."
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr "Por favor insira um email válido."
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr "Este email já está cadastrado, obrigado!"
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr "Por favor insira o CAPTCHA."
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
- msgstr ""
196
 
197
  #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
198
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
@@ -258,41 +259,42 @@ msgstr "Sim"
258
  msgid "No"
259
  msgstr "Não"
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
- msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
- msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
- msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
- msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
- msgstr ""
296
 
297
  #. Plugin Name of the plugin/theme
298
  msgid "MailChimp for WordPress"
@@ -350,7 +352,7 @@ msgstr "Renovar listas MailChimp"
350
 
351
  #: mailchimp-for-wordpress/includes/views/api-settings.php:112
352
  msgid "No lists were found in your MailChimp account"
353
- msgstr ""
354
 
355
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
356
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
@@ -454,21 +456,42 @@ msgstr "Carregar CSS padrão?"
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr "Selecione \"sim\" se o checkbox aparece num lugar estranho."
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
- msgstr ""
462
 
463
  #: mailchimp-for-wordpress/includes/views/form-settings.php:15
464
  msgid ""
465
  "To use the MailChimp sign-up form, configure the form below and then either "
466
  "paste %s in the content of a post or page or use the widget."
467
- msgstr ""
468
 
469
  #: mailchimp-for-wordpress/includes/views/form-settings.php:20
470
  msgid "Required form settings"
471
- msgstr ""
472
 
473
  #: mailchimp-for-wordpress/includes/views/form-settings.php:24
474
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
@@ -480,6 +503,12 @@ msgstr "Carregar estilos (CSS)?"
480
  msgid "Yes, load basic form styles"
481
  msgstr "Sim, carregue os básicos"
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +571,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +703,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr "tags HTML como %s são permitidos nos campos de mensagem."
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr "Use as variáveis para adicionar conteúdo dinâmico em seu formulário."
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
688
  msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
  msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
  msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr "Substituido com o número de inscritos na(s) lista(s) selecionada(s)"
700
 
701
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
  msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
  msgid "Replaced with the visitor's IP address"
709
  msgstr "Substituído com o IP do visitante"
710
 
711
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr "Substituído com a data atual (yyyy/mm/dd ex: %s)"
715
 
716
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr "Substituído com a hora atual (hh:mm:ss ex: %s)"
720
 
721
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
  msgid ""
724
  "Replaced with the logged in user's email (or nothing, if there is no logged "
725
  "in user)"
726
  msgstr "Substituído com o email do usuário autenticado (ou nada, se não houver usuário autenticado)"
727
 
728
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
  msgid "First name of the current user"
731
  msgstr "Nome do usuário atual"
732
 
733
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
  msgid "Last name of the current user"
736
  msgstr "Sobrenome do usuário atual"
737
 
738
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
  msgid "Current user ID"
741
  msgstr "ID do usuário atual"
742
 
743
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
745
  msgid "Current URL"
746
  msgstr "URL atual"
747
 
@@ -829,11 +907,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +946,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +990,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr "Documentação"
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr "Salvar"
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr "Atualizar"
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr "Voltar para as configurações gerais do form"
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr "Formulário atualizado."
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr "Formulário salvo."
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr "Relatórios"
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr "%s finalização"
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr "Por favor certifique que o plugin está conectado ao MailChimp. <a href=\"%s\">Insira uma chave API válida.</a>"
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1064,13 @@ msgstr "Não foi possível criar a folha de estilos. Adicione manualmente o CSS
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr "Para aplicar estes estilos em seu site, selecione \"carregar estilos customizados\" nas %sconfigurações de formulário%s"
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr "A %sFolha de Estilos CSS%s foi criada."
986
 
@@ -1018,29 +1108,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
- msgstr "Sua licença expirou. Você deve <a href=\"%s\">extender sua licença</a> para continuar usando."
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr "Falha ao ativar sua licença, a chave parece estar inválida."
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr "Sua %s licença foi desativada."
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr "Falha ao desativar sua %s licença."
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr "Erro de solicitação: \"%s\""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr "%s: Configurações de Licença"
1046
 
@@ -1075,51 +1173,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr "Chave do status da Licença"
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr "(desative sua licença para poder ativar em outro site WordPress)"
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr "Por favor insira uma licença no campo abaixo."
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr "Chave da Licença"
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr "Você definiu sua licença usando a %s constante PHP."
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr "Sua %s licença vai expirar em %s."
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr "%sRenove sua licença agora%s."
1125
 
@@ -1133,25 +1236,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr "<strong>Erro:</strong> Formulário de cadastro não encontrado. Por favor verifique se você usou o ID de formulário correto."
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr "Novo cadastro"
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr "<strong>%s</strong> cadastrado no %s em %s usando o formulário \"%s\"."
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr "Este email foi auto-enviado pelo plugin MailChimp for WordPress."
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr "Formulário MailChimp for WP"
@@ -1178,7 +1298,7 @@ msgstr "Selecione o formulário para mostrar"
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr "Você não tem nenhum formulário de cadastro. <a href=\"%s\">Criar um agora.</a>"
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1309,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr "Formulário"
1196
 
@@ -1236,10 +1356,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr "Email"
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr "Lista"
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr "Tipo"
@@ -1249,8 +1365,8 @@ msgid "Source"
1249
  msgstr "Fonte"
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
- msgstr "Data Extra"
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1256
  msgid "Subscribed"
@@ -1261,7 +1377,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1385,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr "Nenhuma solicitação encontrada."
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1500,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr "textos customizados de etiquetas"
1
  # Copyright (C) 2014 Danny van Kooten
2
  # This file is distributed under the GPL v3.
3
  # Translators:
4
+ # Leandro de Santi <leandro.santi@gmail.com>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:26+0000\n"
11
+ "Last-Translator: Leandro de Santi <leandro.santi@gmail.com>\n"
12
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/pt_BR/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "Configurações"
32
 
33
  #: mailchimp-for-wordpress/includes/class-admin.php:149
34
  #: mailchimp-for-wordpress/includes/class-admin.php:163
35
  msgid "Upgrade to Pro"
36
+ msgstr "Atualizar para o Pro"
37
 
38
  #: mailchimp-for-wordpress/includes/class-admin.php:160
39
  #: mailchimp-for-wordpress/includes/views/api-settings.php:12
43
  msgstr "Configurações MailChimp"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "Caixas de Seleção"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "Formulários"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr ""
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Formulário de comentário"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Formulário de Registro"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "Formulários Multisite"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "Registro no BuddyPress"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr "%s finalização"
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr "Cache MailChimp renovado."
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr "Falha ao renovar o cache MailChimp - por favor tente novamente."
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
+ msgstr "Um campo EMAIL. Exemplo: <code>%s</code>"
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
+ msgstr "Um botão enviar. Exemplo: <code>%s</code>"
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
+ msgstr "Registrar-se"
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
+ msgstr "Um '%s' campo"
 
 
 
 
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
119
  msgid "Please select at least one list to subscribe to."
120
+ msgstr "Por favor, selecione pelo menos uma lista para se inscrever."
121
 
122
  #: mailchimp-for-wordpress/includes/class-widget.php:20
123
  msgid "MailChimp Sign-Up Form"
124
+ msgstr "Formulário de inscrição MailChimp"
125
 
126
  #: mailchimp-for-wordpress/includes/class-widget.php:21
127
  msgid "Displays your MailChimp for WordPress sign-up form"
128
+ msgstr "Exibe um dos seus formulários MailChimp para WordPress"
129
 
130
  #: mailchimp-for-wordpress/includes/class-widget.php:62
131
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:69
141
  msgid ""
142
  "You can edit your sign-up form in the %sMailChimp for WordPress form "
143
  "settings%s."
144
+ msgstr "Você pode editar o seu formulário de inscrição do %sMailChimp para WordPress em configurações%s de formulário."
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr "Email"
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr "Seu endereço de email"
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr "Cadastrar"
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr "Cadastrar na newsletter!"
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
+ msgstr "Obrigado, o seu pedido de inscrição foi enviado com sucesso! Por favor, verifique sua caixa de e-mail."
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr "Oops. Alguma coisa deu errado. Por favor tente novamente."
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr "Por favor insira um email válido."
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr "Este email já está cadastrado, obrigado!"
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr "Por favor insira o CAPTCHA."
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
+ msgstr "Por favor, preencha os campos necessários."
197
 
198
  #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
199
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
259
  msgid "No"
260
  msgstr "Não"
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
+ msgstr "MailChimp para WordPress - Erro"
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
+ msgstr "Por favor, selecione uma lista para se inscrever nas <a href=\"%s\">configurações</a>."
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
+ msgstr "Esta mensagem é visível apenas para os administradores, para fins de depuração."
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
+ msgstr "O servidor MailChimp retornou a seguinte mensagem de erro, como resposta ao pedido de inscrição:"
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
+ msgstr "Este são os dados que foram enviados para o MailChimp:"
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
+ msgstr "Endereço de E-mail:"
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
+ msgstr "Mesclar variáveis:"
298
 
299
  #. Plugin Name of the plugin/theme
300
  msgid "MailChimp for WordPress"
352
 
353
  #: mailchimp-for-wordpress/includes/views/api-settings.php:112
354
  msgid "No lists were found in your MailChimp account"
355
+ msgstr "Não foram encontradas listas na sua conta MailChimp"
356
 
357
  #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
358
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr "Selecione \"sim\" se o checkbox aparece num lugar estranho."
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr ""
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr ""
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr ""
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr ""
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
+ msgstr "Configurações"
485
 
486
  #: mailchimp-for-wordpress/includes/views/form-settings.php:15
487
  msgid ""
488
  "To use the MailChimp sign-up form, configure the form below and then either "
489
  "paste %s in the content of a post or page or use the widget."
490
+ msgstr "Para usar o formulário de inscrição MailChimp, configure o formulário abaixo e então cole %s o conteúdo num post ou página ou use um widget."
491
 
492
  #: mailchimp-for-wordpress/includes/views/form-settings.php:20
493
  msgid "Required form settings"
494
+ msgstr "Configurações de formulário requeridas"
495
 
496
  #: mailchimp-for-wordpress/includes/views/form-settings.php:24
497
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
503
  msgid "Yes, load basic form styles"
504
  msgstr "Sim, carregue os básicos"
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "(SOMENTE PRO)"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr ""
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr ""
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr "tags HTML como %s são permitidos nos campos de mensagem."
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr ""
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr ""
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr ""
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr ""
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr ""
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr ""
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr ""
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr "Use as variáveis para adicionar conteúdo dinâmico em seu formulário."
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
+ msgstr ""
763
+
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
  msgid "Replaced with the form response (error or success messages)."
767
  msgstr ""
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
  msgid "Replaced with a captcha field."
772
  msgstr ""
773
 
774
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
  msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr "Substituido com o número de inscritos na(s) lista(s) selecionada(s)"
778
 
779
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
  msgid "Replaced with the current site language, eg: %s"
782
  msgstr ""
783
 
784
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
  msgid "Replaced with the visitor's IP address"
787
  msgstr "Substituído com o IP do visitante"
788
 
789
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr "Substituído com a data atual (yyyy/mm/dd ex: %s)"
793
 
794
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
797
  msgstr "Substituído com a hora atual (hh:mm:ss ex: %s)"
798
 
799
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
  msgid ""
802
  "Replaced with the logged in user's email (or nothing, if there is no logged "
803
  "in user)"
804
  msgstr "Substituído com o email do usuário autenticado (ou nada, se não houver usuário autenticado)"
805
 
806
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
  msgid "First name of the current user"
809
  msgstr "Nome do usuário atual"
810
 
811
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
  msgid "Last name of the current user"
814
  msgstr "Sobrenome do usuário atual"
815
 
816
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
  msgid "Current user ID"
819
  msgstr "ID do usuário atual"
820
 
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr "URL atual"
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr ""
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr ""
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr ""
946
  msgstr ""
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
  msgstr ""
951
 
952
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
+ msgid "Leave a %s plugin review on WordPress.org"
954
+ msgstr ""
955
+
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr ""
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr ""
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
  msgstr ""
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr ""
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr ""
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr ""
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr "Documentação"
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr "Salvar"
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr "Atualizar"
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr "Voltar para as configurações gerais do form"
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr "Formulário atualizado."
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr "Formulário salvo."
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr ""
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr ""
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr ""
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr "Relatórios"
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr "Por favor certifique que o plugin está conectado ao MailChimp. <a href=\"%s\">Insira uma chave API válida.</a>"
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr ""
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr ""
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr ""
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr "Para aplicar estes estilos em seu site, selecione \"carregar estilos customizados\" nas %sconfigurações de formulário%s"
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr "A %sFolha de Estilos CSS%s foi criada."
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr ""
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
+ msgstr ""
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr "Falha ao ativar sua licença, a chave parece estar inválida."
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr "Sua %s licença foi desativada."
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr ""
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr "Falha ao desativar sua %s licença."
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr "Erro de solicitação: \"%s\""
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr "%s: Configurações de Licença"
1144
 
1173
  msgstr ""
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
  msgstr ""
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr ""
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr ""
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr "Chave do status da Licença"
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr ""
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr "(desative sua licença para poder ativar em outro site WordPress)"
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr ""
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr "Por favor insira uma licença no campo abaixo."
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr "Chave da Licença"
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr ""
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr "Você definiu sua licença usando a %s constante PHP."
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr "Sua %s licença vai expirar em %s."
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr "%sRenove sua licença agora%s."
1228
 
1236
  " correct form ID."
1237
  msgstr "<strong>Erro:</strong> Formulário de cadastro não encontrado. Por favor verifique se você usou o ID de formulário correto."
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr ""
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr "Novo cadastro"
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr "<strong>%s</strong> cadastrado no %s em %s usando o formulário \"%s\"."
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr "Lista"
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr ""
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr ""
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr "Este email foi auto-enviado pelo plugin MailChimp for WordPress."
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr ""
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr "Formulário MailChimp for WP"
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr "Você não tem nenhum formulário de cadastro. <a href=\"%s\">Criar um agora.</a>"
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr ""
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr "Formulário"
1316
 
1356
  msgid "Email"
1357
  msgstr "Email"
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr "Tipo"
1365
  msgstr "Fonte"
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
+ msgstr ""
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1372
  msgid "Subscribed"
1377
  msgstr ""
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr ""
1383
 
1385
  msgid "deleted"
1386
  msgstr ""
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr ""
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr ""
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr ""
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr ""
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr ""
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr ""
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr ""
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr "Nenhuma solicitação encontrada."
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr ""
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr ""
1428
 
1500
  "forms."
1501
  msgstr ""
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr "textos customizados de etiquetas"
languages/mailchimp-for-wp-ro_RO.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ro_RO/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ro_RO/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-ru_RU.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
10
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ru_RU/)\n"
13
  "MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr ""
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
30
  msgid "Settings"
31
  msgstr "настройки"
32
 
@@ -43,80 +43,79 @@ msgid "MailChimp Settings"
43
  msgstr "настройки MailChimp"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
47
  msgid "Checkboxes"
48
  msgstr "флажки"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "формы"
55
 
56
- #: mailchimp-for-wordpress/includes/class-admin.php:310
57
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
58
  msgid "Comment form"
59
  msgstr "Форма для комментариев"
60
 
61
- #: mailchimp-for-wordpress/includes/class-admin.php:311
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
63
  msgid "Registration form"
64
  msgstr "Регистрационная форма"
65
 
66
- #: mailchimp-for-wordpress/includes/class-admin.php:315
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
68
  msgid "MultiSite forms"
69
  msgstr "многосайтовая форма"
70
 
71
- #: mailchimp-for-wordpress/includes/class-admin.php:319
72
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
73
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
74
  msgid "BuddyPress registration"
75
  msgstr "регистрация BuddyPress"
76
 
77
- #: mailchimp-for-wordpress/includes/class-admin.php:327
78
- #: mailchimp-for-wordpress/includes/class-admin.php:331
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
80
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
81
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
82
- msgid "(PRO ONLY)"
83
- msgstr "доступно только в профессиональной версии"
84
 
85
- #: mailchimp-for-wordpress/includes/class-admin.php:360
86
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
87
  msgid "Renewed MailChimp cache."
88
  msgstr ""
89
 
90
- #: mailchimp-for-wordpress/includes/class-admin.php:362
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
92
  msgid "Failed to renew MailChimp cache - please try again later."
93
  msgstr ""
94
 
95
- #: mailchimp-for-wordpress/includes/class-admin.php:395
96
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
97
  msgid "An EMAIL field. Example: <code>%s</code>"
98
  msgstr ""
99
 
100
- #: mailchimp-for-wordpress/includes/class-admin.php:401
101
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
102
  msgid "A submit button. Example: <code>%s</code>"
103
  msgstr ""
104
 
105
- #: mailchimp-for-wordpress/includes/class-admin.php:401
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
107
  msgid "Sign Up"
108
  msgstr ""
109
 
110
- #: mailchimp-for-wordpress/includes/class-admin.php:426
111
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
112
  msgid "A '%s' field"
113
  msgstr ""
114
 
115
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
116
- msgid "MailChimp Error:"
117
- msgstr ""
118
-
119
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
120
  msgid "Please select at least one list to subscribe to."
121
  msgstr ""
122
 
@@ -145,53 +144,54 @@ msgid ""
145
  msgstr ""
146
 
147
  #: mailchimp-for-wordpress/includes/functions/general.php:21
148
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
149
  msgid "Email address"
150
  msgstr ""
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
154
  msgid "Your email address"
155
  msgstr ""
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
159
  msgid "Sign up"
160
  msgstr ""
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
164
  msgid "Sign me up for the newsletter!"
165
  msgstr ""
166
 
167
- #: mailchimp-for-wordpress/includes/functions/general.php:44
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr ""
172
 
173
- #: mailchimp-for-wordpress/includes/functions/general.php:45
174
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr ""
177
 
178
- #: mailchimp-for-wordpress/includes/functions/general.php:46
179
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
180
  msgid "Please provide a valid email address."
181
  msgstr ""
182
 
183
- #: mailchimp-for-wordpress/includes/functions/general.php:47
184
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr ""
187
 
188
- #: mailchimp-for-wordpress/includes/functions/general.php:48
189
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
190
  msgid "Please complete the CAPTCHA."
191
  msgstr ""
192
 
193
- #: mailchimp-for-wordpress/includes/functions/general.php:49
194
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
195
  msgid "Please fill in the required fields."
196
  msgstr ""
197
 
@@ -259,39 +259,40 @@ msgstr ""
259
  msgid "No"
260
  msgstr ""
261
 
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
265
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr ""
268
 
269
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr ""
274
 
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
276
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr ""
279
 
280
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr ""
285
 
286
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr ""
289
 
290
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
@@ -455,8 +456,29 @@ msgstr ""
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr ""
457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
459
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
460
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
461
  msgid "Form Settings"
462
  msgstr ""
@@ -481,6 +503,12 @@ msgstr ""
481
  msgid "Yes, load basic form styles"
482
  msgstr ""
483
 
 
 
 
 
 
 
484
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
485
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
486
  msgid "Yes, load my custom form styles"
@@ -543,7 +571,7 @@ msgid "Form mark-up"
543
  msgstr ""
544
 
545
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
546
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
547
  msgid "Your form is missing the following (required) form fields:"
548
  msgstr ""
549
 
@@ -675,74 +703,123 @@ msgstr ""
675
  msgid "HTML tags like %s are allowed in the message fields."
676
  msgstr ""
677
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
679
  msgid "Form variables"
680
  msgstr ""
681
 
682
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
683
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
684
  msgid "Use the following variables to add some dynamic content to your form."
685
  msgstr ""
686
 
687
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
688
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
689
- msgid "Replaced with the form response (error or success messages)."
690
  msgstr ""
691
 
692
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
693
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
694
- msgid "Replaced with a captcha field."
695
  msgstr ""
696
 
697
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
698
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
699
- msgid "Replaced with the number of subscribers on the selected list(s)"
700
  msgstr ""
701
 
702
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
703
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
704
- msgid "Replaced with the current site language, eg: %s"
705
  msgstr ""
706
 
707
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
708
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
709
- msgid "Replaced with the visitor's IP address"
710
  msgstr ""
711
 
712
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
713
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
714
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
715
  msgstr ""
716
 
717
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
718
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
719
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
720
  msgstr ""
721
 
722
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
723
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
724
- msgid ""
725
- "Replaced with the logged in user's email (or nothing, if there is no logged "
726
- "in user)"
727
  msgstr ""
728
 
729
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
730
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
731
- msgid "First name of the current user"
 
 
732
  msgstr ""
733
 
734
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
735
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
736
- msgid "Last name of the current user"
737
  msgstr ""
738
 
739
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
740
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
741
- msgid "Current user ID"
742
  msgstr ""
743
 
744
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
745
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
746
  msgid "Current URL"
747
  msgstr ""
748
 
@@ -830,11 +907,20 @@ msgstr ""
830
 
831
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
832
  msgid ""
 
 
 
 
 
 
 
 
833
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
834
  "now</a> for an even better plugin, you will love it."
835
  msgstr ""
836
 
837
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
838
  msgid ""
839
  "This plugin is not developed by or affiliated with MailChimp in any way."
840
  msgstr ""
@@ -860,27 +946,35 @@ msgid "Show a token of your appreciation"
860
  msgstr ""
861
 
862
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
863
- msgid "Leave a %s plugin review on WordPress.org"
864
  msgstr ""
865
 
866
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
867
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
868
  msgstr ""
869
 
870
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
871
  msgid "Tweet about MailChimp for WordPress"
872
  msgstr ""
873
 
874
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
875
  msgid ""
876
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
877
- "page</a>"
878
  msgstr ""
879
 
880
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
881
  msgid "Vote \"works\" on the WordPress.org plugin page"
882
  msgstr ""
883
 
 
 
 
 
884
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
885
  msgid ""
886
  "This plugin has an even better premium version, I am sure you will love it."
@@ -896,69 +990,64 @@ msgstr ""
896
  msgid "More information about MailChimp for WP Pro"
897
  msgstr ""
898
 
899
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
900
  msgid "Documentation"
901
  msgstr ""
902
 
903
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
904
  msgid "Save Form"
905
  msgstr ""
906
 
907
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
908
  msgid "Update Form"
909
  msgstr ""
910
 
911
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
912
  msgid "Back to general form settings"
913
  msgstr ""
914
 
915
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
916
  msgid "Form updated."
917
  msgstr ""
918
 
919
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
920
  msgid "Form saved."
921
  msgstr ""
922
 
923
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
924
  msgid "Optional Settings"
925
  msgstr ""
926
 
927
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
928
  msgid "Form Variables"
929
  msgstr ""
930
 
931
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
932
  msgid "MailChimp & License"
933
  msgstr ""
934
 
935
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
936
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
937
  msgid "Reports"
938
  msgstr ""
939
 
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
941
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
942
- msgid "%s checkout"
943
- msgstr ""
944
-
945
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
946
  msgid ""
947
  "Please make sure the plugin is connected to MailChimp. <a "
948
  "href=\"%s\">Provide a valid API key.</a>"
949
  msgstr ""
950
 
951
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
952
  msgid "End date can't be before the start date"
953
  msgstr ""
954
 
955
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
956
  msgid ""
957
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
958
  "page."
959
  msgstr ""
960
 
961
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
962
  msgid ""
963
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
964
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -975,13 +1064,13 @@ msgstr ""
975
  msgid "%sShow generated CSS%s"
976
  msgstr ""
977
 
978
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
979
  msgid ""
980
  "To apply these styles on your website, select \"load custom form styles\" in"
981
  " the %sform settings%s"
982
  msgstr ""
983
 
984
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
985
  msgid "The %sCSS Stylesheet%s has been created."
986
  msgstr ""
987
 
@@ -1019,29 +1108,37 @@ msgid ""
1019
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1020
  msgstr ""
1021
 
1022
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1023
  msgid ""
1024
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1025
- " order to use it again."
1026
  msgstr ""
1027
 
1028
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1029
  msgid "Failed to activate your license, your license key seems to be invalid."
1030
  msgstr ""
1031
 
1032
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1033
  msgid "Your %s license has been deactivated."
1034
  msgstr ""
1035
 
1036
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1037
  msgid "Failed to deactivate your %s license."
1038
  msgstr ""
1039
 
1040
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1041
  msgid "Request error: \"%s\""
1042
  msgstr ""
1043
 
1044
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1045
  msgid "%s: License Settings"
1046
  msgstr ""
1047
 
@@ -1076,51 +1173,56 @@ msgid "you are receiving updates"
1076
  msgstr ""
1077
 
1078
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1079
- msgid "INACTIVE"
1080
  msgstr ""
1081
 
1082
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1083
  msgid "you are <strong>not</strong> receiving updates."
1084
  msgstr ""
1085
 
1086
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1087
  msgid "Toggle license status"
1088
  msgstr ""
1089
 
1090
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1091
  msgid "Deactivate License"
1092
  msgstr ""
1093
 
1094
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1095
  msgid ""
1096
  "(deactivate your license so you can activate it on another WordPress site)"
1097
  msgstr ""
1098
 
1099
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1100
  msgid "Activate License"
1101
  msgstr ""
1102
 
1103
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1104
  msgid "Please enter a license key in the field below first."
1105
  msgstr ""
1106
 
1107
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1108
  msgid "License Key"
1109
  msgstr ""
1110
 
1111
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1112
  msgid "Paste your license key here, as found in the email receipt."
1113
  msgstr ""
1114
 
1115
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1116
  msgid "You defined your license key using the %s PHP constant."
1117
  msgstr ""
1118
 
1119
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1120
  msgid "Your %s license will expire on %s."
1121
  msgstr ""
1122
 
1123
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1124
  msgid "%sRenew your license now%s."
1125
  msgstr ""
1126
 
@@ -1134,25 +1236,42 @@ msgid ""
1134
  " correct form ID."
1135
  msgstr ""
1136
 
1137
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1138
  msgid "New Sign-Up"
1139
  msgstr ""
1140
 
1141
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1142
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1143
  msgstr ""
1144
 
1145
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1146
  msgid ""
1147
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1148
  "be added to the selected MailChimp lists until they confirm their email "
1149
  "address."
1150
  msgstr ""
1151
 
1152
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1153
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1154
  msgstr ""
1155
 
 
 
 
 
1156
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1157
  msgid "MailChimp for WP Form"
1158
  msgstr ""
@@ -1179,7 +1298,7 @@ msgstr ""
1179
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1180
  msgstr ""
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1183
  msgid ""
1184
  "Thank you, your sign-up request was successful! Please check your email "
1185
  "inbox to confirm."
@@ -1190,8 +1309,8 @@ msgid "ID"
1190
  msgstr ""
1191
 
1192
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1194
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1195
  msgid "Form"
1196
  msgstr ""
1197
 
@@ -1237,10 +1356,6 @@ msgstr ""
1237
  msgid "Email"
1238
  msgstr ""
1239
 
1240
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1241
- msgid "List"
1242
- msgstr ""
1243
-
1244
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1245
  msgid "Type"
1246
  msgstr ""
@@ -1250,7 +1365,7 @@ msgid "Source"
1250
  msgstr ""
1251
 
1252
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1253
- msgid "Extra data"
1254
  msgstr ""
1255
 
1256
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1262,7 +1377,7 @@ msgid "Log items deleted."
1262
  msgstr ""
1263
 
1264
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1265
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1266
  msgid "Comment"
1267
  msgstr ""
1268
 
@@ -1270,44 +1385,44 @@ msgstr ""
1270
  msgid "deleted"
1271
  msgstr ""
1272
 
1273
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1274
  msgid "Registration"
1275
  msgstr ""
1276
 
1277
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1278
  msgid "MultiSite registration"
1279
  msgstr ""
1280
 
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1282
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1283
  msgid "Checkout"
1284
  msgstr ""
1285
 
1286
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1287
  msgid "Contact Form 7"
1288
  msgstr ""
1289
 
1290
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1291
  msgid "bbPress: New Topic"
1292
  msgstr ""
1293
 
1294
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1295
  msgid "bbPress: New Reply"
1296
  msgstr ""
1297
 
1298
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1299
  msgid "Other Form"
1300
  msgstr ""
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1303
  msgid "No subscribe requests found."
1304
  msgstr ""
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1307
  msgid "All"
1308
  msgstr ""
1309
 
1310
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1311
  msgid "Checkbox"
1312
  msgstr ""
1313
 
@@ -1385,23 +1500,6 @@ msgid ""
1385
  "forms."
1386
  msgstr ""
1387
 
1388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1389
- msgid "WooCommerce checkbox position"
1390
- msgstr ""
1391
-
1392
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1393
- msgid "After the billing details"
1394
- msgstr ""
1395
-
1396
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1397
- msgid "After the additional information"
1398
- msgstr ""
1399
-
1400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1401
- msgid ""
1402
- "Choose the position for the checkbox in your WooCommerce checkout form."
1403
- msgstr ""
1404
-
1405
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1406
  msgid "Custom label texts"
1407
  msgstr ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
+ "POT-Creation-Date: 2014-12-09 19:20:27+00:00\n"
10
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
11
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/ru_RU/)\n"
13
  "MIME-Version: 1.0\n"
26
  "X-Textdomain-Support: yes\n"
27
 
28
  #: mailchimp-for-wordpress/includes/class-admin.php:130
29
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
30
  msgid "Settings"
31
  msgstr "настройки"
32
 
43
  msgstr "настройки MailChimp"
44
 
45
  #: mailchimp-for-wordpress/includes/class-admin.php:161
46
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
47
  msgid "Checkboxes"
48
  msgstr "флажки"
49
 
50
  #: mailchimp-for-wordpress/includes/class-admin.php:162
51
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
52
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
53
  msgid "Forms"
54
  msgstr "формы"
55
 
56
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
57
+ msgid "This option is only available in MailChimp for WordPress Pro."
58
+ msgstr ""
59
+
60
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
61
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
62
  msgid "Comment form"
63
  msgstr "Форма для комментариев"
64
 
65
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
66
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
67
  msgid "Registration form"
68
  msgstr "Регистрационная форма"
69
 
70
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
71
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
72
  msgid "MultiSite forms"
73
  msgstr "многосайтовая форма"
74
 
75
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
76
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
77
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
78
  msgid "BuddyPress registration"
79
  msgstr "регистрация BuddyPress"
80
 
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
82
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
84
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
85
+ msgid "%s checkout"
86
+ msgstr ""
 
87
 
88
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
89
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
90
  msgid "Renewed MailChimp cache."
91
  msgstr ""
92
 
93
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
94
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
95
  msgid "Failed to renew MailChimp cache - please try again later."
96
  msgstr ""
97
 
98
+ #: mailchimp-for-wordpress/includes/class-admin.php:398
99
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
100
  msgid "An EMAIL field. Example: <code>%s</code>"
101
  msgstr ""
102
 
103
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
104
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
105
  msgid "A submit button. Example: <code>%s</code>"
106
  msgstr ""
107
 
108
+ #: mailchimp-for-wordpress/includes/class-admin.php:404
109
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
110
  msgid "Sign Up"
111
  msgstr ""
112
 
113
+ #: mailchimp-for-wordpress/includes/class-admin.php:429
114
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
115
  msgid "A '%s' field"
116
  msgstr ""
117
 
118
+ #: mailchimp-for-wordpress/includes/class-form-request.php:675
 
 
 
 
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
148
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
149
  msgid "Email address"
150
  msgstr ""
151
 
152
  #: mailchimp-for-wordpress/includes/functions/general.php:22
153
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
154
  msgid "Your email address"
155
  msgstr ""
156
 
157
  #: mailchimp-for-wordpress/includes/functions/general.php:23
158
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
159
  msgid "Sign up"
160
  msgstr ""
161
 
162
  #: mailchimp-for-wordpress/includes/functions/general.php:30
163
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
164
  msgid "Sign me up for the newsletter!"
165
  msgstr ""
166
 
167
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
168
  msgid ""
169
  "Thank you, your sign-up request was successful! Please check your e-mail "
170
  "inbox."
171
  msgstr ""
172
 
173
+ #: mailchimp-for-wordpress/includes/functions/general.php:48
174
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
175
  msgid "Oops. Something went wrong. Please try again later."
176
  msgstr ""
177
 
178
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
179
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
180
  msgid "Please provide a valid email address."
181
  msgstr ""
182
 
183
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
184
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
185
  msgid "Given email address is already subscribed, thank you!"
186
  msgstr ""
187
 
188
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
189
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
190
  msgid "Please complete the CAPTCHA."
191
  msgstr ""
192
 
193
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
194
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
195
  msgid "Please fill in the required fields."
196
  msgstr ""
197
 
259
  msgid "No"
260
  msgstr ""
261
 
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
265
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
266
  msgid "MailChimp for WordPress - Error"
267
  msgstr ""
268
 
269
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
270
  msgid ""
271
  "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
272
  "settings</a>."
273
  msgstr ""
274
 
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
276
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
277
  msgid "This message is only visible to administrators for debugging purposes."
278
  msgstr ""
279
 
280
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
281
  msgid ""
282
  "The MailChimp server returned the following error message as a response to "
283
  "our sign-up request:"
284
  msgstr ""
285
 
286
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
287
  msgid "This is the data that was sent to MailChimp:"
288
  msgstr ""
289
 
290
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
291
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
292
  msgid "Email address:"
293
  msgstr ""
294
 
295
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
296
  msgid "Merge variables:"
297
  msgstr ""
298
 
456
  msgid "Select \"yes\" if the checkbox appears in a weird place."
457
  msgstr ""
458
 
459
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
460
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
461
+ msgid "WooCommerce checkbox position"
462
+ msgstr ""
463
+
464
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
465
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
466
+ msgid "After the billing details"
467
+ msgstr ""
468
+
469
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
470
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
471
+ msgid "After the additional information"
472
+ msgstr ""
473
+
474
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
475
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
476
+ msgid ""
477
+ "Choose the position for the checkbox in your WooCommerce checkout form."
478
+ msgstr ""
479
+
480
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
481
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
482
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
483
  msgid "Form Settings"
484
  msgstr ""
503
  msgid "Yes, load basic form styles"
504
  msgstr ""
505
 
506
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:29
507
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:36
508
+ #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
509
+ msgid "(PRO ONLY)"
510
+ msgstr "доступно только в профессиональной версии"
511
+
512
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
513
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
514
  msgid "Yes, load my custom form styles"
571
  msgstr ""
572
 
573
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
574
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
575
  msgid "Your form is missing the following (required) form fields:"
576
  msgstr ""
577
 
703
  msgid "HTML tags like %s are allowed in the message fields."
704
  msgstr ""
705
 
706
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
707
+ msgid "Building your sign-up form"
708
+ msgstr ""
709
+
710
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
711
+ msgid ""
712
+ "At a minimum, your form should include just an %s field and a submit button."
713
+ msgstr ""
714
+
715
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
716
+ msgid ""
717
+ "Add more form fields if your selected lists require more fields. Field names"
718
+ " should match the field tags of the selected lists. Use the \"Add a new "
719
+ "field\" tool to have the HTML generated for you."
720
+ msgstr ""
721
+
722
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:243
723
+ msgid "Form Styling"
724
+ msgstr ""
725
+
726
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:244
727
+ msgid "Alter the visual appearance of the form by applying CSS rules to %s."
728
+ msgstr ""
729
+
730
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:245
731
+ msgid ""
732
+ "You can add the CSS rules to your theme stylesheet using the <a "
733
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
734
+ " plugin like %s"
735
+ msgstr ""
736
+
737
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
738
+ msgid ""
739
+ "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
740
+ "selectors you can use to target the different form elements."
741
+ msgstr ""
742
+
743
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:247
744
+ msgid ""
745
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
746
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
747
+ "lets you customize form styles without writing any code."
748
+ msgstr ""
749
+
750
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
751
  msgid "Form variables"
752
  msgstr ""
753
 
754
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
755
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
756
  msgid "Use the following variables to add some dynamic content to your form."
757
  msgstr ""
758
 
759
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
760
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
761
+ msgid "Replaced with the visitor's email (if set in URL or cookie)."
762
  msgstr ""
763
 
764
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:261
765
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
766
+ msgid "Replaced with the form response (error or success messages)."
767
  msgstr ""
768
 
769
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
770
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
771
+ msgid "Replaced with a captcha field."
772
  msgstr ""
773
 
774
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
775
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
776
+ msgid "Replaced with the number of subscribers on the selected list(s)"
777
  msgstr ""
778
 
779
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
780
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
781
+ msgid "Replaced with the current site language, eg: %s"
782
  msgstr ""
783
 
784
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
785
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
786
+ msgid "Replaced with the visitor's IP address"
787
  msgstr ""
788
 
789
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
790
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
791
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
792
  msgstr ""
793
 
794
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
795
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
796
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
797
  msgstr ""
798
 
799
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
800
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
801
+ msgid ""
802
+ "Replaced with the logged in user's email (or nothing, if there is no logged "
803
+ "in user)"
804
  msgstr ""
805
 
806
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
807
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
808
+ msgid "First name of the current user"
809
  msgstr ""
810
 
811
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
812
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
813
+ msgid "Last name of the current user"
814
  msgstr ""
815
 
816
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
817
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
818
+ msgid "Current user ID"
819
+ msgstr ""
820
+
821
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
822
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
823
  msgid "Current URL"
824
  msgstr ""
825
 
907
 
908
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
909
  msgid ""
910
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
911
+ "translated in your language or do you spot errors with the current "
912
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
913
+ "translation project and click \"help translate\"</a>."
914
+ msgstr ""
915
+
916
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
917
+ msgid ""
918
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
919
  "now</a> for an even better plugin, you will love it."
920
  msgstr ""
921
 
922
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
923
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
924
  msgid ""
925
  "This plugin is not developed by or affiliated with MailChimp in any way."
926
  msgstr ""
946
  msgstr ""
947
 
948
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
949
+ msgid "Upgrade to MailChimp for WordPress Pro"
950
  msgstr ""
951
 
952
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
953
+ msgid "Leave a %s plugin review on WordPress.org"
954
+ msgstr ""
955
+
956
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
957
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
958
  msgstr ""
959
 
960
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
961
  msgid "Tweet about MailChimp for WordPress"
962
  msgstr ""
963
 
964
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
965
  msgid ""
966
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
967
+ "page</a>."
968
  msgstr ""
969
 
970
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:21
971
  msgid "Vote \"works\" on the WordPress.org plugin page"
972
  msgstr ""
973
 
974
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
975
+ msgid "About the developer"
976
+ msgstr ""
977
+
978
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
979
  msgid ""
980
  "This plugin has an even better premium version, I am sure you will love it."
990
  msgid "More information about MailChimp for WP Pro"
991
  msgstr ""
992
 
993
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
994
  msgid "Documentation"
995
  msgstr ""
996
 
997
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
998
  msgid "Save Form"
999
  msgstr ""
1000
 
1001
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1002
  msgid "Update Form"
1003
  msgstr ""
1004
 
1005
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1006
  msgid "Back to general form settings"
1007
  msgstr ""
1008
 
1009
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1010
  msgid "Form updated."
1011
  msgstr ""
1012
 
1013
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1014
  msgid "Form saved."
1015
  msgstr ""
1016
 
1017
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1018
  msgid "Optional Settings"
1019
  msgstr ""
1020
 
1021
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1022
  msgid "Form Variables"
1023
  msgstr ""
1024
 
1025
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1026
  msgid "MailChimp & License"
1027
  msgstr ""
1028
 
1029
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1030
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1031
  msgid "Reports"
1032
  msgstr ""
1033
 
1034
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1035
  msgid ""
1036
  "Please make sure the plugin is connected to MailChimp. <a "
1037
  "href=\"%s\">Provide a valid API key.</a>"
1038
  msgstr ""
1039
 
1040
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:830
1041
  msgid "End date can't be before the start date"
1042
  msgstr ""
1043
 
1044
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1045
  msgid ""
1046
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1047
  "page."
1048
  msgstr ""
1049
 
1050
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1051
  msgid ""
1052
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1053
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1064
  msgid "%sShow generated CSS%s"
1065
  msgstr ""
1066
 
1067
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1068
  msgid ""
1069
  "To apply these styles on your website, select \"load custom form styles\" in"
1070
  " the %sform settings%s"
1071
  msgstr ""
1072
 
1073
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1074
  msgid "The %sCSS Stylesheet%s has been created."
1075
  msgstr ""
1076
 
1108
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1109
  msgstr ""
1110
 
1111
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
1112
  msgid ""
1113
+ "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1114
+ "you want to use it again."
1115
  msgstr ""
1116
 
1117
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:240
1118
  msgid "Failed to activate your license, your license key seems to be invalid."
1119
  msgstr ""
1120
 
1121
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1122
  msgid "Your %s license has been deactivated."
1123
  msgstr ""
1124
 
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1127
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
1128
+ msgid ""
1129
+ "Your plugin license has expired. You will no longer have access to plugin "
1130
+ "updates unless you <a href=\"%s\">renew your license</a>."
1131
+ msgstr ""
1132
+
1133
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:272
1134
  msgid "Failed to deactivate your %s license."
1135
  msgstr ""
1136
 
1137
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1138
  msgid "Request error: \"%s\""
1139
  msgstr ""
1140
 
1141
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1142
  msgid "%s: License Settings"
1143
  msgstr ""
1144
 
1173
  msgstr ""
1174
 
1175
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1176
+ msgid "EXPIRED"
1177
  msgstr ""
1178
 
1179
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1180
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1181
  msgid "you are <strong>not</strong> receiving updates."
1182
  msgstr ""
1183
 
1184
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1185
+ msgid "INACTIVE"
1186
+ msgstr ""
1187
+
1188
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1189
  msgid "Toggle license status"
1190
  msgstr ""
1191
 
1192
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1193
  msgid "Deactivate License"
1194
  msgstr ""
1195
 
1196
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1197
  msgid ""
1198
  "(deactivate your license so you can activate it on another WordPress site)"
1199
  msgstr ""
1200
 
1201
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1202
  msgid "Activate License"
1203
  msgstr ""
1204
 
1205
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1206
  msgid "Please enter a license key in the field below first."
1207
  msgstr ""
1208
 
1209
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1210
  msgid "License Key"
1211
  msgstr ""
1212
 
1213
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1214
  msgid "Paste your license key here, as found in the email receipt."
1215
  msgstr ""
1216
 
1217
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1218
  msgid "You defined your license key using the %s PHP constant."
1219
  msgstr ""
1220
 
1221
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:82
1222
  msgid "Your %s license will expire on %s."
1223
  msgstr ""
1224
 
1225
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1226
  msgid "%sRenew your license now%s."
1227
  msgstr ""
1228
 
1236
  " correct form ID."
1237
  msgstr ""
1238
 
1239
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:621
1240
+ msgid "New MailChimp Sign-Up"
1241
+ msgstr ""
1242
+
1243
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:629
1244
  msgid "New Sign-Up"
1245
  msgstr ""
1246
 
1247
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:630
1248
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1249
  msgstr ""
1250
 
1251
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:635
1252
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1253
+ msgid "List"
1254
+ msgstr ""
1255
+
1256
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:675
1257
+ msgid "Other fields"
1258
+ msgstr ""
1259
+
1260
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:692
1261
  msgid ""
1262
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1263
  "be added to the selected MailChimp lists until they confirm their email "
1264
  "address."
1265
  msgstr ""
1266
 
1267
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:694
1268
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1269
  msgstr ""
1270
 
1271
+ #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1272
+ msgid "IP Address"
1273
+ msgstr ""
1274
+
1275
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1276
  msgid "MailChimp for WP Form"
1277
  msgstr ""
1298
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
  msgstr ""
1300
 
1301
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:50
1302
  msgid ""
1303
  "Thank you, your sign-up request was successful! Please check your email "
1304
  "inbox to confirm."
1309
  msgstr ""
1310
 
1311
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1313
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1314
  msgid "Form"
1315
  msgstr ""
1316
 
1356
  msgid "Email"
1357
  msgstr ""
1358
 
 
 
 
 
1359
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1360
  msgid "Type"
1361
  msgstr ""
1365
  msgstr ""
1366
 
1367
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1368
+ msgid "Data"
1369
  msgstr ""
1370
 
1371
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1377
  msgstr ""
1378
 
1379
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1380
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1381
  msgid "Comment"
1382
  msgstr ""
1383
 
1385
  msgid "deleted"
1386
  msgstr ""
1387
 
1388
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1389
  msgid "Registration"
1390
  msgstr ""
1391
 
1392
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1393
  msgid "MultiSite registration"
1394
  msgstr ""
1395
 
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1397
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1398
  msgid "Checkout"
1399
  msgstr ""
1400
 
1401
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1402
  msgid "Contact Form 7"
1403
  msgstr ""
1404
 
1405
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1406
  msgid "bbPress: New Topic"
1407
  msgstr ""
1408
 
1409
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1410
  msgid "bbPress: New Reply"
1411
  msgstr ""
1412
 
1413
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1414
  msgid "Other Form"
1415
  msgstr ""
1416
 
1417
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1418
  msgid "No subscribe requests found."
1419
  msgstr ""
1420
 
1421
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1422
  msgid "All"
1423
  msgstr ""
1424
 
1425
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1426
  msgid "Checkbox"
1427
  msgstr ""
1428
 
1500
  "forms."
1501
  msgstr ""
1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1504
  msgid "Custom label texts"
1505
  msgstr ""
languages/mailchimp-for-wp-sk_SK.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sk_SK/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr "Nastavenia"
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr "Nastavenia MailChimpu"
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr "Zaškrtávacie políčka"
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
51
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
52
  msgid "Forms"
53
  msgstr "Formuláre"
54
 
55
- #: mailchimp-for-wordpress/includes/class-admin.php:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr "Komentárový formulár"
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr "Registračný formulár"
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr "MultiSite formuláre"
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr "BuddyPress registrácia"
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
- msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr "Vyrovnávacia pamäť MailChimpu bola obnovená."
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr "Nepodarilo sa obnoviť vyrovnávaciu pamäť MailChimpu - skúste to znova neskôr."
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr "Pole E-MAIL. Príklad: <code>%s</code>"
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr "Potvrdzovacie tlačidlo. Príklad: <code>%s</code>"
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr "Registrácia"
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr "Pole '%s'"
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr "E-mailová adresa"
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr "Vaša e-mailová adresa"
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr "Zaregistrovať sa"
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr "Prihlásiť ma na odber noviniek!"
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr "Ups. Niečo sa pokazilo. Skúste to znova neskôr."
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr "Prosím, zadajte platnú e-mailovú adresu."
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr "Zadaná e-mailová adresa je už prihlásená na odber, ďakujeme!"
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr "Prosím, opíšte kód CAPTCHA."
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr "Prosím, vyplňte povinné polia."
196
 
@@ -258,39 +258,40 @@ msgstr "Áno"
258
  msgid "No"
259
  msgstr "Nie"
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr "Načítať predvolené CSS?"
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr "Zvoľte \"áno\", ak sa zaškrtávacie políčko objaví na podivnom mieste."
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr "Nastavenia formulára"
@@ -480,6 +502,12 @@ msgstr "Načítať štýly formulára (CSS)?"
480
  msgid "Yes, load basic form styles"
481
  msgstr "Áno, načítať základné štýly formulára"
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr "Vo Vašom formulári chýbajú nasledujúce (povinné) polia:"
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr "HTML značky ako %s sú povolené v poliach správ."
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr "Použite nasledujúce premenné na pridanie dynamického obsahu do formulára."
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
 
 
 
 
 
688
  msgid "Replaced with the form response (error or success messages)."
689
  msgstr "Nahradí sa odozvou formulára (správa o úspešnosti požiadavky)."
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
  msgid "Replaced with a captcha field."
694
  msgstr "Nahradí sa poľom captcha."
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
  msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr "Nahradí sa počtom odberateľov na zvolenom zozname"
700
 
701
- #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
  msgid "Replaced with the current site language, eg: %s"
704
  msgstr "Nahradí sa aktuálnym jazykom stránky, napr.: %s"
705
 
706
- #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
  msgid "Replaced with the visitor's IP address"
709
  msgstr "Nahradí sa IP adresou návštevníka"
710
 
711
- #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr "Nahradí sa aktuálnym dátumom (yyyy/mm/dd napr.: %s)"
715
 
716
- #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr "Nahradí sa aktuálnym časom (hh:mm:ss napr.: %s)"
720
 
721
- #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
  msgid ""
724
  "Replaced with the logged in user's email (or nothing, if there is no logged "
725
  "in user)"
726
  msgstr "Nahradí sa e-mailom prihláseného používateľa (alebo ničím, ak sa žiadny používateľ neprihlásil)"
727
 
728
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
  msgid "First name of the current user"
731
  msgstr "Meno aktuálneho používateľa"
732
 
733
- #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
  msgid "Last name of the current user"
736
  msgstr "Priezvisko aktuálneho používateľa"
737
 
738
- #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
  msgid "Current user ID"
741
  msgstr "ID aktuálneho používateľa"
742
 
743
- #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
745
  msgid "Current URL"
746
  msgstr "Aktuálna URL"
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr "Dokumentácia"
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr "Uložiť formulár"
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr "Aktualizovať formulár"
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr "Späť na všeobecné nastavenia formulára"
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr "Formulár sa aktualizoval."
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr "Formulár bol uložený."
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr "Voliteľné nastavenia"
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr "Premenné formulára"
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr "MailChimp a licencia"
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr "Správy"
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr "%s pokladňa"
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr "Prosím uistite sa, že rozšírenie je pripojené k MailChimpu. <a href=\"%s\">Zadajte platný API kľúč.</a>"
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr "Dátum ukončenia nemôže byť pred dátumom začatia"
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr "Zakázali ste zapisovanie pomocou filtra %s. Znovu ho povoľte, aby ste mohli používať stránku Správ."
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr "Nepodarilo sa vytvoriť štýly. Pridajte si vytvorené CSS do Vašich
974
  msgid "%sShow generated CSS%s"
975
  msgstr "%sZobraziť vygenerované CSS%s"
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr "Ak si prajete použiť tieto štýly na svojej webovej stránke, vyberte \"načítať vlastné štýly formulára\" v %snastaveniach formulára%s"
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr "%sCSS štýly%s boli vytvorené."
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr "Dosiahli ste aktivačný limit. Musíte si Vašu licenciu <a href=\"%s\">vynulovať</a> alebo <a href=\"%s\">obnoviť</a> pre ďalšie použitie na tejto stránke."
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
- msgstr "Vaša licencia vypršala. Musíte jej <a href=\"%s\">platnosť predĺžiť</a> pre ďalšie používanie."
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr "Aktivácia Vašej licencie zlyhala. Zdá sa, že licenčný kľúč je neplatný."
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr "Vaša %s licencia bola deaktivovaná."
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr "Deaktivácia Vašej licencie %s zlyhala."
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr "Chyba požiadavky: \"%s\""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr "%s: Nastavenia licencie"
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr "Prepnúť stav licencie"
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr "Deaktivácia licencie"
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr "(deaktivujte Vašu licenciu, aby ste ju mohli znova aktivovať na inej WordPress stránke)"
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr "Aktivácia licencie"
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr "Prosím, zadajte licenčný kľúč do poľa nižšie."
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr "Licenčný kľúč"
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr "Sem vložte Váš licenčný kľúč, ktorý ste obdržali e-mailom."
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr "Vašu licenciu ste zadefinovali pomocou %s PHP konštanty."
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr "Platnosť Vašej licencie %s vyprší dňa %s."
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr "%sObnovte si Vašu licenciu teraz%s."
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr "<strong>Chyba:</strong> Registračný formulár sa nenašiel. Skontrolujte, či ste zadali správne ID formulára."
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr "Nová registrácia"
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr "<strong>%s</strong> registrovaný o %s dňa %s pomocou formulára \"%s\"."
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr "Všimnite si, že ste povolili dvojitý opt-in pre formulár \"%s\". Používateľ nebude pridaný do zvoleného MailChimp zoznamu, kým si svoju e-mailovú adresu nepotvrdí."
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr "Tento e-mail bol odoslaný automaticky z rozšírenia MailChimp pre WordPress."
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr "MailChimp pre WP formulár"
@@ -1178,7 +1297,7 @@ msgstr "Zvoľte formulár, ktorý chcete zobraziť"
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr "Nemáte žiadne registračné formuláre. <a href=\"%s\">Vytvoriť teraz.</a>"
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr "ID"
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr "Formulár"
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr "E-mail"
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr "Zoznam"
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr "Typ"
@@ -1249,8 +1364,8 @@ msgid "Source"
1249
  msgstr "Zdroj"
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
- msgstr "Dodatočné údaje"
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1256
  msgid "Subscribed"
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr "Komentár"
1267
 
@@ -1269,44 +1384,44 @@ msgstr "Komentár"
1269
  msgid "deleted"
1270
  msgstr "odstránený"
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr "Registrácia"
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr "MultiSite registrácia"
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr "Pokladňa"
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr "Contact Form 7"
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr "bbPress: Nová téma"
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr "bbPress: Nová odpoveď"
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr "Iný formulár"
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr "Nenašli sa žiadne požiadavky na odber."
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr "Všetky"
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr "Zaškrtávacie políčko"
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr "Pozícia zaškrtávacieho políčka WooCommerce"
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr "Po platobných údajoch"
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr "Po doplňujúcej informácii"
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr "Vyberte umiestnenie vo svojom WooCommerce nákupnom formulári pre zaškrtávacie políčko."
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr "Vlastné texty štítkov"
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sk_SK/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr "Nastavenia"
31
 
42
  msgstr "Nastavenia MailChimpu"
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr "Zaškrtávacie políčka"
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
51
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
52
  msgid "Forms"
53
  msgstr "Formuláre"
54
 
55
+ #: mailchimp-for-wordpress/includes/class-admin.php:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr "Komentárový formulár"
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr "Registračný formulár"
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr "MultiSite formuláre"
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr "BuddyPress registrácia"
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
85
+ msgstr "%s pokladňa"
 
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr "Vyrovnávacia pamäť MailChimpu bola obnovená."
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
94
  msgid "Failed to renew MailChimp cache - please try again later."
95
  msgstr "Nepodarilo sa obnoviť vyrovnávaciu pamäť MailChimpu - skúste to znova neskôr."
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 "Pole E-MAIL. Príklad: <code>%s</code>"
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 "Potvrdzovacie tlačidlo. Príklad: <code>%s</code>"
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 "Registrácia"
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 "Pole '%s'"
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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 "E-mailová adresa"
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr "Vaša e-mailová adresa"
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr "Zaregistrovať sa"
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr "Prihlásiť ma na odber noviniek!"
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr "Ups. Niečo sa pokazilo. Skúste to znova neskôr."
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr "Prosím, zadajte platnú e-mailovú adresu."
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr "Zadaná e-mailová adresa je už prihlásená na odber, ďakujeme!"
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr "Prosím, opíšte kód CAPTCHA."
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr "Prosím, vyplňte povinné polia."
196
 
258
  msgid "No"
259
  msgstr "Nie"
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
455
  msgid "Select \"yes\" if the checkbox appears in a weird place."
456
  msgstr "Zvoľte \"áno\", ak sa zaškrtávacie políčko objaví na podivnom mieste."
457
 
458
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
459
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
460
+ msgid "WooCommerce checkbox position"
461
+ msgstr "Pozícia zaškrtávacieho políčka WooCommerce"
462
+
463
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
464
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
465
+ msgid "After the billing details"
466
+ msgstr "Po platobných údajoch"
467
+
468
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
469
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
470
+ msgid "After the additional information"
471
+ msgstr "Po doplňujúcej informácii"
472
+
473
+ #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
474
+ #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
475
+ msgid ""
476
+ "Choose the position for the checkbox in your WooCommerce checkout form."
477
+ msgstr "Vyberte umiestnenie vo svojom WooCommerce nákupnom formulári pre zaškrtávacie políčko."
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 "Nastavenia formulára"
502
  msgid "Yes, load basic form styles"
503
  msgstr "Áno, načítať základné štýly formulára"
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"
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 "Vo Vašom formulári chýbajú nasledujúce (povinné) polia:"
576
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr "HTML značky ako %s sú povolené v poliach správ."
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr "Použite nasledujúce premenné na pridanie dynamického obsahu do formulára."
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
  msgid "Replaced with the form response (error or success messages)."
766
  msgstr "Nahradí sa odozvou formulára (správa o úspešnosti požiadavky)."
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
  msgid "Replaced with a captcha field."
771
  msgstr "Nahradí sa poľom captcha."
772
 
773
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
775
  msgid "Replaced with the number of subscribers on the selected list(s)"
776
  msgstr "Nahradí sa počtom odberateľov na zvolenom zozname"
777
 
778
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:275
779
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
  msgid "Replaced with the current site language, eg: %s"
781
  msgstr "Nahradí sa aktuálnym jazykom stránky, napr.: %s"
782
 
783
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
  msgid "Replaced with the visitor's IP address"
786
  msgstr "Nahradí sa IP adresou návštevníka"
787
 
788
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
  msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr "Nahradí sa aktuálnym dátumom (yyyy/mm/dd napr.: %s)"
792
 
793
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
  msgid "Replaced with the current time (hh:mm:ss eg: %s)"
796
  msgstr "Nahradí sa aktuálnym časom (hh:mm:ss napr.: %s)"
797
 
798
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
800
  msgid ""
801
  "Replaced with the logged in user's email (or nothing, if there is no logged "
802
  "in user)"
803
  msgstr "Nahradí sa e-mailom prihláseného používateľa (alebo ničím, ak sa žiadny používateľ neprihlásil)"
804
 
805
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:295
806
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
  msgid "First name of the current user"
808
  msgstr "Meno aktuálneho používateľa"
809
 
810
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
  msgid "Last name of the current user"
813
  msgstr "Priezvisko aktuálneho používateľa"
814
 
815
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
  msgid "Current user ID"
818
  msgstr "ID aktuálneho používateľa"
819
 
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr "Aktuálna URL"
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr "Dokumentácia"
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr "Uložiť formulár"
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr "Aktualizovať formulár"
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr "Späť na všeobecné nastavenia formulára"
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr "Formulár sa aktualizoval."
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr "Formulár bol uložený."
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr "Voliteľné nastavenia"
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr "Premenné formulára"
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr "MailChimp a licencia"
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
1029
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1030
  msgid "Reports"
1031
  msgstr "Správy"
1032
 
1033
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:728
 
 
 
 
 
1034
  msgid ""
1035
  "Please make sure the plugin is connected to MailChimp. <a "
1036
  "href=\"%s\">Provide a valid API key.</a>"
1037
  msgstr "Prosím uistite sa, že rozšírenie je pripojené k MailChimpu. <a href=\"%s\">Zadajte platný API kľúč.</a>"
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 "Dátum ukončenia nemôže byť pred dátumom začatia"
1042
 
1043
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:862
1044
  msgid ""
1045
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
1046
  "page."
1047
  msgstr "Zakázali ste zapisovanie pomocou filtra %s. Znovu ho povoľte, aby ste mohli používať stránku Správ."
1048
 
1049
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr "%sZobraziť vygenerované CSS%s"
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr "Ak si prajete použiť tieto štýly na svojej webovej stránke, vyberte \"načítať vlastné štýly formulára\" v %snastaveniach formulára%s"
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr "%sCSS štýly%s boli vytvorené."
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr "Dosiahli ste aktivačný limit. Musíte si Vašu licenciu <a href=\"%s\">vynulovať</a> alebo <a href=\"%s\">obnoviť</a> pre ďalšie použitie na tejto stránke."
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr "Aktivácia Vašej licencie zlyhala. Zdá sa, že licenčný kľúč je neplatný."
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr "Vaša %s licencia bola deaktivovaná."
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr "Deaktivácia Vašej licencie %s zlyhala."
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr "Chyba požiadavky: \"%s\""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr "%s: Nastavenia licencie"
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr "Prepnúť stav licencie"
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr "Deaktivácia licencie"
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr "(deaktivujte Vašu licenciu, aby ste ju mohli znova aktivovať na inej WordPress stránke)"
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr "Aktivácia licencie"
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr "Prosím, zadajte licenčný kľúč do poľa nižšie."
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr "Licenčný kľúč"
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr "Sem vložte Váš licenčný kľúč, ktorý ste obdržali e-mailom."
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
1217
  msgid "You defined your license key using the %s PHP constant."
1218
  msgstr "Vašu licenciu ste zadefinovali pomocou %s PHP konštanty."
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 "Platnosť Vašej licencie %s vyprší dňa %s."
1223
 
1224
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr "%sObnovte si Vašu licenciu teraz%s."
1227
 
1235
  " correct form ID."
1236
  msgstr "<strong>Chyba:</strong> Registračný formulár sa nenašiel. Skontrolujte, či ste zadali správne ID formulára."
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 "Nová registrácia"
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 "<strong>%s</strong> registrovaný o %s dňa %s pomocou formulára \"%s\"."
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 "Zoznam"
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 "Všimnite si, že ste povolili dvojitý opt-in pre formulár \"%s\". Používateľ nebude pridaný do zvoleného MailChimp zoznamu, kým si svoju e-mailovú adresu nepotvrdí."
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 "Tento e-mail bol odoslaný automaticky z rozšírenia MailChimp pre WordPress."
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 "MailChimp pre WP formulár"
1297
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1298
  msgstr "Nemáte žiadne registračné formuláre. <a href=\"%s\">Vytvoriť teraz.</a>"
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."
1308
  msgstr "ID"
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr "Formulár"
1315
 
1355
  msgid "Email"
1356
  msgstr "E-mail"
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr "Typ"
1364
  msgstr "Zdroj"
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
+ msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1371
  msgid "Subscribed"
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr "Komentár"
1382
 
1384
  msgid "deleted"
1385
  msgstr "odstránený"
1386
 
1387
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:219
1388
  msgid "Registration"
1389
  msgstr "Registrácia"
1390
 
1391
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:235
1392
  msgid "MultiSite registration"
1393
  msgstr "MultiSite registrácia"
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr "Pokladňa"
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr "Contact Form 7"
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr "bbPress: Nová téma"
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr "bbPress: Nová odpoveď"
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr "Iný formulár"
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr "Nenašli sa žiadne požiadavky na odber."
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr "Všetky"
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr "Zaškrtávacie políčko"
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr "Vlastné texty štítkov"
languages/mailchimp-for-wp-sl_SI.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sl_SI/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the %sform settings%s"
981
  msgstr ""
982
 
983
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
984
  msgid "The %sCSS Stylesheet%s has been created."
985
  msgstr ""
986
 
@@ -1018,29 +1107,37 @@ msgid ""
1018
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1019
  msgstr ""
1020
 
1021
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:236
1022
  msgid ""
1023
- "Your license has expired. You must <a href=\"%s\">extend your license</a> in"
1024
- " order to use it again."
1025
  msgstr ""
1026
 
1027
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:239
1028
  msgid "Failed to activate your license, your license key seems to be invalid."
1029
  msgstr ""
1030
 
1031
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:264
1032
  msgid "Your %s license has been deactivated."
1033
  msgstr ""
1034
 
1035
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:266
 
 
 
 
 
 
 
 
1036
  msgid "Failed to deactivate your %s license."
1037
  msgstr ""
1038
 
1039
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:304
1040
  msgid "Request error: \"%s\""
1041
  msgstr ""
1042
 
1043
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
1044
  msgid "%s: License Settings"
1045
  msgstr ""
1046
 
@@ -1075,51 +1172,56 @@ msgid "you are receiving updates"
1075
  msgstr ""
1076
 
1077
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1078
- msgid "INACTIVE"
1079
  msgstr ""
1080
 
1081
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
 
1082
  msgid "you are <strong>not</strong> receiving updates."
1083
  msgstr ""
1084
 
1085
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
 
 
 
 
1086
  msgid "Toggle license status"
1087
  msgstr ""
1088
 
1089
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
1090
  msgid "Deactivate License"
1091
  msgstr ""
1092
 
1093
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
1094
  msgid ""
1095
  "(deactivate your license so you can activate it on another WordPress site)"
1096
  msgstr ""
1097
 
1098
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
1099
  msgid "Activate License"
1100
  msgstr ""
1101
 
1102
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1103
  msgid "Please enter a license key in the field below first."
1104
  msgstr ""
1105
 
1106
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
1107
  msgid "License Key"
1108
  msgstr ""
1109
 
1110
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1111
  msgid "Paste your license key here, as found in the email receipt."
1112
  msgstr ""
1113
 
1114
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1115
  msgid "You defined your license key using the %s PHP constant."
1116
  msgstr ""
1117
 
1118
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:73
1119
  msgid "Your %s license will expire on %s."
1120
  msgstr ""
1121
 
1122
- #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:76
1123
  msgid "%sRenew your license now%s."
1124
  msgstr ""
1125
 
@@ -1133,25 +1235,42 @@ msgid ""
1133
  " correct form ID."
1134
  msgstr ""
1135
 
1136
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:474
 
 
 
 
1137
  msgid "New Sign-Up"
1138
  msgstr ""
1139
 
1140
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:475
1141
  msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1142
  msgstr ""
1143
 
1144
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:516
 
 
 
 
 
 
 
 
 
1145
  msgid ""
1146
  "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1147
  "be added to the selected MailChimp lists until they confirm their email "
1148
  "address."
1149
  msgstr ""
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/class-form-request.php:519
1152
  msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1153
  msgstr ""
1154
 
 
 
 
 
1155
  #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1156
  msgid "MailChimp for WP Form"
1157
  msgstr ""
@@ -1178,7 +1297,7 @@ msgstr ""
1178
  msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1179
  msgstr ""
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:43
1182
  msgid ""
1183
  "Thank you, your sign-up request was successful! Please check your email "
1184
  "inbox to confirm."
@@ -1189,8 +1308,8 @@ msgid "ID"
1189
  msgstr ""
1190
 
1191
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1192
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:228
1193
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:343
1194
  msgid "Form"
1195
  msgstr ""
1196
 
@@ -1236,10 +1355,6 @@ msgstr ""
1236
  msgid "Email"
1237
  msgstr ""
1238
 
1239
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
1240
- msgid "List"
1241
- msgstr ""
1242
-
1243
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1244
  msgid "Type"
1245
  msgstr ""
@@ -1249,7 +1364,7 @@ msgid "Source"
1249
  msgstr ""
1250
 
1251
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1252
- msgid "Extra data"
1253
  msgstr ""
1254
 
1255
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
@@ -1261,7 +1376,7 @@ msgid "Log items deleted."
1261
  msgstr ""
1262
 
1263
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1264
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
1265
  msgid "Comment"
1266
  msgstr ""
1267
 
@@ -1269,44 +1384,44 @@ msgstr ""
1269
  msgid "deleted"
1270
  msgstr ""
1271
 
1272
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
1273
  msgid "Registration"
1274
  msgstr ""
1275
 
1276
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
1277
  msgid "MultiSite registration"
1278
  msgstr ""
1279
 
1280
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:241
1281
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:245
1282
  msgid "Checkout"
1283
  msgstr ""
1284
 
1285
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:250
1286
  msgid "Contact Form 7"
1287
  msgstr ""
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:254
1290
  msgid "bbPress: New Topic"
1291
  msgstr ""
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:258
1294
  msgid "bbPress: New Reply"
1295
  msgstr ""
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:264
1298
  msgid "Other Form"
1299
  msgstr ""
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:314
1302
  msgid "No subscribe requests found."
1303
  msgstr ""
1304
 
1305
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
1306
  msgid "All"
1307
  msgstr ""
1308
 
1309
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
1310
  msgid "Checkbox"
1311
  msgstr ""
1312
 
@@ -1384,23 +1499,6 @@ msgid ""
1384
  "forms."
1385
  msgstr ""
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
1388
- msgid "WooCommerce checkbox position"
1389
- msgstr ""
1390
-
1391
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
1392
- msgid "After the billing details"
1393
- msgstr ""
1394
-
1395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
1396
- msgid "After the additional information"
1397
- msgstr ""
1398
-
1399
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
1400
- msgid ""
1401
- "Choose the position for the checkbox in your WooCommerce checkout form."
1402
- msgstr ""
1403
-
1404
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1405
  msgid "Custom label texts"
1406
  msgstr ""
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:20+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sl_SI/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the %sform settings%s"
1070
  msgstr ""
1071
 
1072
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:332
1073
  msgid "The %sCSS Stylesheet%s has been created."
1074
  msgstr ""
1075
 
1107
  "<a href=\"%s\">upgrade your license</a> to use it on this site."
1108
  msgstr ""
1109
 
1110
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:237
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/admin/license-manager/class-license-manager.php:240
1117
  msgid "Failed to activate your license, your license key seems to be invalid."
1118
  msgstr ""
1119
 
1120
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:265
1121
  msgid "Your %s license has been deactivated."
1122
  msgstr ""
1123
 
1124
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:270
1125
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:69
1126
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:78
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/admin/license-manager/class-license-manager.php:272
1133
  msgid "Failed to deactivate your %s license."
1134
  msgstr ""
1135
 
1136
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:310
1137
  msgid "Request error: \"%s\""
1138
  msgstr ""
1139
 
1140
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:469
1141
  msgid "%s: License Settings"
1142
  msgstr ""
1143
 
1172
  msgstr ""
1173
 
1174
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1175
+ msgid "EXPIRED"
1176
  msgstr ""
1177
 
1178
  #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
1179
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1180
  msgid "you are <strong>not</strong> receiving updates."
1181
  msgstr ""
1182
 
1183
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:30
1184
+ msgid "INACTIVE"
1185
+ msgstr ""
1186
+
1187
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:35
1188
  msgid "Toggle license status"
1189
  msgstr ""
1190
 
1191
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:39
1192
  msgid "Deactivate License"
1193
  msgstr ""
1194
 
1195
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:40
1196
  msgid ""
1197
  "(deactivate your license so you can activate it on another WordPress site)"
1198
  msgstr ""
1199
 
1200
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
1201
  msgid "Activate License"
1202
  msgstr ""
1203
 
1204
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:46
1205
  msgid "Please enter a license key in the field below first."
1206
  msgstr ""
1207
 
1208
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
1209
  msgid "License Key"
1210
  msgstr ""
1211
 
1212
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:56
1213
  msgid "Paste your license key here, as found in the email receipt."
1214
  msgstr ""
1215
 
1216
+ #: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:58
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/admin/license-manager/views/form.php:86
1225
  msgid "%sRenew your license now%s."
1226
  msgstr ""
1227
 
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 ""
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."
1308
  msgstr ""
1309
 
1310
  #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:36
1311
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:226
1312
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1313
  msgid "Form"
1314
  msgstr ""
1315
 
1355
  msgid "Email"
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
1359
  msgid "Type"
1360
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
1367
+ msgid "Data"
1368
  msgstr ""
1369
 
1370
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
1376
  msgstr ""
1377
 
1378
  #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
1379
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:215
1380
  msgid "Comment"
1381
  msgstr ""
1382
 
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:235
1392
  msgid "MultiSite registration"
1393
  msgstr ""
1394
 
1395
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:239
1396
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:243
1397
  msgid "Checkout"
1398
  msgstr ""
1399
 
1400
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:248
1401
  msgid "Contact Form 7"
1402
  msgstr ""
1403
 
1404
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:252
1405
  msgid "bbPress: New Topic"
1406
  msgstr ""
1407
 
1408
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:256
1409
  msgid "bbPress: New Reply"
1410
  msgstr ""
1411
 
1412
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:262
1413
  msgid "Other Form"
1414
  msgstr ""
1415
 
1416
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:312
1417
  msgid "No subscribe requests found."
1418
  msgstr ""
1419
 
1420
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:335
1421
  msgid "All"
1422
  msgstr ""
1423
 
1424
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:347
1425
  msgid "Checkbox"
1426
  msgstr ""
1427
 
1499
  "forms."
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
1503
  msgid "Custom label texts"
1504
  msgstr ""
languages/mailchimp-for-wp-sr_RS.po CHANGED
@@ -5,8 +5,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
9
- "PO-Revision-Date: 2014-11-14 12:25+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Serbian (Serbia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sr_RS/)\n"
12
  "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
29
  msgid "Settings"
30
  msgstr ""
31
 
@@ -42,80 +42,79 @@ msgid "MailChimp Settings"
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
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:310
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
 
 
 
 
57
  msgid "Comment form"
58
  msgstr ""
59
 
60
- #: mailchimp-for-wordpress/includes/class-admin.php:311
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
62
  msgid "Registration form"
63
  msgstr ""
64
 
65
- #: mailchimp-for-wordpress/includes/class-admin.php:315
66
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
67
  msgid "MultiSite forms"
68
  msgstr ""
69
 
70
- #: mailchimp-for-wordpress/includes/class-admin.php:319
71
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
72
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
73
  msgid "BuddyPress registration"
74
  msgstr ""
75
 
76
- #: mailchimp-for-wordpress/includes/class-admin.php:327
77
- #: mailchimp-for-wordpress/includes/class-admin.php:331
78
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
79
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
80
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
81
- msgid "(PRO ONLY)"
82
  msgstr ""
83
 
84
- #: mailchimp-for-wordpress/includes/class-admin.php:360
85
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
86
  msgid "Renewed MailChimp cache."
87
  msgstr ""
88
 
89
- #: mailchimp-for-wordpress/includes/class-admin.php:362
90
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
91
  msgid "Failed to renew MailChimp cache - please try again later."
92
  msgstr ""
93
 
94
- #: mailchimp-for-wordpress/includes/class-admin.php:395
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
96
  msgid "An EMAIL field. Example: <code>%s</code>"
97
  msgstr ""
98
 
99
- #: mailchimp-for-wordpress/includes/class-admin.php:401
100
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
101
  msgid "A submit button. Example: <code>%s</code>"
102
  msgstr ""
103
 
104
- #: mailchimp-for-wordpress/includes/class-admin.php:401
105
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
106
  msgid "Sign Up"
107
  msgstr ""
108
 
109
- #: mailchimp-for-wordpress/includes/class-admin.php:426
110
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
111
  msgid "A '%s' field"
112
  msgstr ""
113
 
114
- #: mailchimp-for-wordpress/includes/class-form-request.php:517
115
- msgid "MailChimp Error:"
116
- msgstr ""
117
-
118
- #: mailchimp-for-wordpress/includes/class-form-request.php:568
119
  msgid "Please select at least one list to subscribe to."
120
  msgstr ""
121
 
@@ -144,53 +143,54 @@ msgid ""
144
  msgstr ""
145
 
146
  #: mailchimp-for-wordpress/includes/functions/general.php:21
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
 
148
  msgid "Email address"
149
  msgstr ""
150
 
151
  #: mailchimp-for-wordpress/includes/functions/general.php:22
152
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:20
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
- #: mailchimp-for-wordpress/includes/functions/general.php:44
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:45
173
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:44
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
- #: mailchimp-for-wordpress/includes/functions/general.php:46
178
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:45
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
- #: mailchimp-for-wordpress/includes/functions/general.php:47
183
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:46
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
- #: mailchimp-for-wordpress/includes/functions/general.php:48
188
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:47
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
- #: mailchimp-for-wordpress/includes/functions/general.php:49
193
- #: mailchimp-for-wordpress-pro/includes/functions/general.php:48
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
@@ -258,39 +258,40 @@ msgstr ""
258
  msgid "No"
259
  msgstr ""
260
 
261
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
262
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
263
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
264
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
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:168
275
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
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:216
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
 
290
  msgid "Email address:"
291
  msgstr ""
292
 
293
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
294
  msgid "Merge variables:"
295
  msgstr ""
296
 
@@ -454,8 +455,29 @@ msgstr ""
454
  msgid "Select \"yes\" if the checkbox appears in a weird place."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: mailchimp-for-wordpress/includes/views/form-settings.php:9
458
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
459
  #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
460
  msgid "Form Settings"
461
  msgstr ""
@@ -480,6 +502,12 @@ msgstr ""
480
  msgid "Yes, load basic form styles"
481
  msgstr ""
482
 
 
 
 
 
 
 
483
  #: mailchimp-for-wordpress/includes/views/form-settings.php:29
484
  #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
485
  msgid "Yes, load my custom form styles"
@@ -542,7 +570,7 @@ msgid "Form mark-up"
542
  msgstr ""
543
 
544
  #: mailchimp-for-wordpress/includes/views/form-settings.php:75
545
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:346
546
  msgid "Your form is missing the following (required) form fields:"
547
  msgstr ""
548
 
@@ -674,74 +702,123 @@ msgstr ""
674
  msgid "HTML tags like %s are allowed in the message fields."
675
  msgstr ""
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
678
  msgid "Form variables"
679
  msgstr ""
680
 
681
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
682
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:460
683
  msgid "Use the following variables to add some dynamic content to your form."
684
  msgstr ""
685
 
686
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
687
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
688
- msgid "Replaced with the form response (error or success messages)."
689
  msgstr ""
690
 
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:262
692
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:18
693
- msgid "Replaced with a captcha field."
694
  msgstr ""
695
 
696
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
697
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:23
698
- msgid "Replaced with the number of subscribers on the selected list(s)"
699
  msgstr ""
700
 
701
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
702
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
703
- msgid "Replaced with the current site language, eg: %s"
704
  msgstr ""
705
 
706
  #: mailchimp-for-wordpress/includes/views/form-settings.php:275
707
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
708
- msgid "Replaced with the visitor's IP address"
709
  msgstr ""
710
 
711
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
712
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
713
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
714
  msgstr ""
715
 
716
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
717
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
718
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
719
  msgstr ""
720
 
721
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
722
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
723
- msgid ""
724
- "Replaced with the logged in user's email (or nothing, if there is no logged "
725
- "in user)"
726
  msgstr ""
727
 
728
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
729
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
730
- msgid "First name of the current user"
 
 
731
  msgstr ""
732
 
733
  #: mailchimp-for-wordpress/includes/views/form-settings.php:295
734
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
735
- msgid "Last name of the current user"
736
  msgstr ""
737
 
738
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
739
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
740
- msgid "Current user ID"
741
  msgstr ""
742
 
743
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
744
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
 
 
 
 
 
745
  msgid "Current URL"
746
  msgstr ""
747
 
@@ -829,11 +906,20 @@ msgstr ""
829
 
830
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
831
  msgid ""
 
 
 
 
 
 
 
 
832
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
833
  "now</a> for an even better plugin, you will love it."
834
  msgstr ""
835
 
836
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
 
837
  msgid ""
838
  "This plugin is not developed by or affiliated with MailChimp in any way."
839
  msgstr ""
@@ -859,27 +945,35 @@ msgid "Show a token of your appreciation"
859
  msgstr ""
860
 
861
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
862
- msgid "Leave a %s plugin review on WordPress.org"
863
  msgstr ""
864
 
865
  #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
 
 
 
 
866
  msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
867
  msgstr ""
868
 
869
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
870
  msgid "Tweet about MailChimp for WordPress"
871
  msgstr ""
872
 
873
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
874
  msgid ""
875
  "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
876
- "page</a>"
877
  msgstr ""
878
 
879
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
880
  msgid "Vote \"works\" on the WordPress.org plugin page"
881
  msgstr ""
882
 
 
 
 
 
883
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
884
  msgid ""
885
  "This plugin has an even better premium version, I am sure you will love it."
@@ -895,69 +989,64 @@ msgstr ""
895
  msgid "More information about MailChimp for WP Pro"
896
  msgstr ""
897
 
898
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
899
  msgid "Documentation"
900
  msgstr ""
901
 
902
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
903
  msgid "Save Form"
904
  msgstr ""
905
 
906
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
907
  msgid "Update Form"
908
  msgstr ""
909
 
910
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
911
  msgid "Back to general form settings"
912
  msgstr ""
913
 
914
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
915
  msgid "Form updated."
916
  msgstr ""
917
 
918
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
919
  msgid "Form saved."
920
  msgstr ""
921
 
922
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
923
  msgid "Optional Settings"
924
  msgstr ""
925
 
926
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
927
  msgid "Form Variables"
928
  msgstr ""
929
 
930
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
931
  msgid "MailChimp & License"
932
  msgstr ""
933
 
934
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
935
  #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
936
  msgid "Reports"
937
  msgstr ""
938
 
939
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
940
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
941
- msgid "%s checkout"
942
- msgstr ""
943
-
944
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:715
945
  msgid ""
946
  "Please make sure the plugin is connected to MailChimp. <a "
947
  "href=\"%s\">Provide a valid API key.</a>"
948
  msgstr ""
949
 
950
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:817
951
  msgid "End date can't be before the start date"
952
  msgstr ""
953
 
954
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:849
955
  msgid ""
956
  "You disabled logging using the %s filter. Re-enable it to use the Reports "
957
  "page."
958
  msgstr ""
959
 
960
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:865
961
  msgid ""
962
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
963
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
@@ -974,13 +1063,13 @@ msgstr ""
974
  msgid "%sShow generated CSS%s"
975
  msgstr ""
976
 
977
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
978
  msgid ""
979
  "To apply these styles on your website, select \"load custom form styles\" in"
980
  " the
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: 2014-12-09 19:20:27+00:00\n"
9
+ "PO-Revision-Date: 2014-12-09 19:21+0000\n"
10
  "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
11
  "Language-Team: Serbian (Serbia) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sr_RS/)\n"
12
  "MIME-Version: 1.0\n"
25
  "X-Textdomain-Support: yes\n"
26
 
27
  #: mailchimp-for-wordpress/includes/class-admin.php:130
28
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
29
  msgid "Settings"
30
  msgstr ""
31
 
42
  msgstr ""
43
 
44
  #: mailchimp-for-wordpress/includes/class-admin.php:161
45
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
46
  msgid "Checkboxes"
47
  msgstr ""
48
 
49
  #: mailchimp-for-wordpress/includes/class-admin.php:162
50
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
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:299
56
+ msgid "This option is only available in MailChimp for WordPress Pro."
57
+ msgstr ""
58
+
59
+ #: mailchimp-for-wordpress/includes/class-admin.php:313
60
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
61
  msgid "Comment form"
62
  msgstr ""
63
 
64
+ #: mailchimp-for-wordpress/includes/class-admin.php:314
65
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
66
  msgid "Registration form"
67
  msgstr ""
68
 
69
+ #: mailchimp-for-wordpress/includes/class-admin.php:318
70
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
71
  msgid "MultiSite forms"
72
  msgstr ""
73
 
74
+ #: mailchimp-for-wordpress/includes/class-admin.php:322
75
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
76
+ #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
77
  msgid "BuddyPress registration"
78
  msgstr ""
79
 
80
+ #: mailchimp-for-wordpress/includes/class-admin.php:330
81
+ #: mailchimp-for-wordpress/includes/class-admin.php:334
82
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
83
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
84
+ msgid "%s checkout"
 
85
  msgstr ""
86
 
87
+ #: mailchimp-for-wordpress/includes/class-admin.php:363
88
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
89
  msgid "Renewed MailChimp cache."
90
  msgstr ""
91
 
92
+ #: mailchimp-for-wordpress/includes/class-admin.php:365
93
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
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
 
143
  msgstr ""
144
 
145
  #: mailchimp-for-wordpress/includes/functions/general.php:21
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:22
152
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
153
  msgid "Your email address"
154
  msgstr ""
155
 
156
  #: mailchimp-for-wordpress/includes/functions/general.php:23
157
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
158
  msgid "Sign up"
159
  msgstr ""
160
 
161
  #: mailchimp-for-wordpress/includes/functions/general.php:30
162
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:27
163
  msgid "Sign me up for the newsletter!"
164
  msgstr ""
165
 
166
+ #: mailchimp-for-wordpress/includes/functions/general.php:47
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:48
173
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:51
174
  msgid "Oops. Something went wrong. Please try again later."
175
  msgstr ""
176
 
177
+ #: mailchimp-for-wordpress/includes/functions/general.php:49
178
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:52
179
  msgid "Please provide a valid email address."
180
  msgstr ""
181
 
182
+ #: mailchimp-for-wordpress/includes/functions/general.php:50
183
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:53
184
  msgid "Given email address is already subscribed, thank you!"
185
  msgstr ""
186
 
187
+ #: mailchimp-for-wordpress/includes/functions/general.php:51
188
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:54
189
  msgid "Please complete the CAPTCHA."
190
  msgstr ""
191
 
192
+ #: mailchimp-for-wordpress/includes/functions/general.php:52
193
+ #: mailchimp-for-wordpress-pro/includes/functions/general.php:55
194
  msgid "Please fill in the required fields."
195
  msgstr ""
196
 
258
  msgid "No"
259
  msgstr ""
260
 
261
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
262
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
263
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
264
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
265
  msgid "MailChimp for WordPress - Error"
266
  msgstr ""
267
 
268
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
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:214
275
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
276
  msgid "This message is only visible to administrators for debugging purposes."
277
  msgstr ""
278
 
279
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
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:296
286
  msgid "This is the data that was sent to MailChimp:"
287
  msgstr ""
288
 
289
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
290
+ #: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
291
  msgid "Email address:"
292
  msgstr ""
293
 
294
+ #: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
295
  msgid "Merge variables:"
296
  msgstr ""
297
 
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:108
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:111
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:112
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:115
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 ""
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"
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
 
702
  msgid "HTML tags like %s are allowed in the message fields."
703
  msgstr ""
704
 
705
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:239
706
+ msgid "Building your sign-up form"
707
+ msgstr ""
708
+
709
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:240
710
+ msgid ""
711
+ "At a minimum, your form should include just an %s field and a submit button."
712
+ msgstr ""
713
+
714
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:241
715
+ msgid ""
716
+ "Add more form fields if your selected lists require more fields. Field names"
717
+ " should match the field tags of the selected lists. Use the \"Add a new "
718
+ "field\" tool to have the HTML generated for you."
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:244
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:245
730
+ msgid ""
731
+ "You can add the CSS rules to your theme stylesheet using the <a "
732
+ "href=\"%s\">Theme Editor</a> or by editing %s over FTP. Alternatively, use a"
733
+ " plugin like %s"
734
+ msgstr ""
735
+
736
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:246
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:247
743
+ msgid ""
744
+ "If you need an easier way to style your forms, <a href=\"%s\">upgrade to "
745
+ "MailChimp for WordPress Pro</a>. It comes with a \"Styles Builder\" that "
746
+ "lets you customize form styles without writing any code."
747
+ msgstr ""
748
+
749
  #: mailchimp-for-wordpress/includes/views/form-settings.php:249
750
  msgid "Form variables"
751
  msgstr ""
752
 
753
  #: mailchimp-for-wordpress/includes/views/form-settings.php:250
754
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
755
  msgid "Use the following variables to add some dynamic content to your form."
756
  msgstr ""
757
 
758
  #: mailchimp-for-wordpress/includes/views/form-settings.php:257
759
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
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:261
764
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
765
+ msgid "Replaced with the form response (error or success messages)."
766
  msgstr ""
767
 
768
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:266
769
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
770
+ msgid "Replaced with a captcha field."
771
  msgstr ""
772
 
773
  #: mailchimp-for-wordpress/includes/views/form-settings.php:271
774
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
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:275
779
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
780
+ msgid "Replaced with the current site language, eg: %s"
781
  msgstr ""
782
 
783
  #: mailchimp-for-wordpress/includes/views/form-settings.php:279
784
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
785
+ msgid "Replaced with the visitor's IP address"
786
  msgstr ""
787
 
788
  #: mailchimp-for-wordpress/includes/views/form-settings.php:283
789
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
790
+ msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
791
  msgstr ""
792
 
793
  #: mailchimp-for-wordpress/includes/views/form-settings.php:287
794
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
795
+ msgid "Replaced with the current time (hh:mm:ss eg: %s)"
 
 
796
  msgstr ""
797
 
798
  #: mailchimp-for-wordpress/includes/views/form-settings.php:291
799
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
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:295
806
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
807
+ msgid "First name of the current user"
808
  msgstr ""
809
 
810
  #: mailchimp-for-wordpress/includes/views/form-settings.php:299
811
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
812
+ msgid "Last name of the current user"
813
  msgstr ""
814
 
815
  #: mailchimp-for-wordpress/includes/views/form-settings.php:303
816
  #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
817
+ msgid "Current user ID"
818
+ msgstr ""
819
+
820
+ #: mailchimp-for-wordpress/includes/views/form-settings.php:307
821
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
822
  msgid "Current URL"
823
  msgstr ""
824
 
906
 
907
  #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
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:10
916
+ msgid ""
917
  "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
918
  "now</a> for an even better plugin, you will love it."
919
  msgstr ""
920
 
921
+ #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
922
+ #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
923
  msgid ""
924
  "This plugin is not developed by or affiliated with MailChimp in any way."
925
  msgstr ""
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:19
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:19
960
  msgid "Tweet about MailChimp for WordPress"
961
  msgstr ""
962
 
963
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
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:21
970
  msgid "Vote \"works\" on the WordPress.org plugin page"
971
  msgstr ""
972
 
973
+ #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:25
974
+ msgid "About the developer"
975
+ msgstr ""
976
+
977
  #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
978
  msgid ""
979
  "This plugin has an even better premium version, I am sure you will love it."
989
  msgid "More information about MailChimp for WP Pro"
990
  msgstr ""
991
 
992
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:204
993
  msgid "Documentation"
994
  msgstr ""
995
 
996
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:247
997
  msgid "Save Form"
998
  msgstr ""
999
 
1000
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:251
1001
  msgid "Update Form"
1002
  msgstr ""
1003
 
1004
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:302
1005
  msgid "Back to general form settings"
1006
  msgstr ""
1007
 
1008
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:304
1009
  msgid "Form updated."
1010
  msgstr ""
1011
 
1012
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:305
1013
  msgid "Form saved."
1014
  msgstr ""
1015
 
1016
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:432
1017
  msgid "Optional Settings"
1018
  msgstr ""
1019
 
1020
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:433
1021
  msgid "Form Variables"
1022
  msgstr ""
1023
 
1024
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:571
1025
  msgid "MailChimp & License"
1026
  msgstr ""
1027
 
1028
+ #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:574
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:728
 
 
 
 
 
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:862
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:878
1050
  msgid ""
1051
  "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1052
  "settings you had set in the Lite version, please <a href=\"%s\">deactivate "
1063
  msgid "%sShow generated CSS%s"
1064
  msgstr ""
1065
 
1066
+ #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:331
1067
  msgid ""
1068
  "To apply these styles on your website, select \"load custom form styles\" in"
1069
  " the