Version Description
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 4.7.3 |
Comparing to | |
See all releases |
Code changes from version 4.7.2 to 4.7.3
- CHANGELOG.md +13 -1
- includes/api/class-api-v3.php +0 -2
- includes/class-field-formatter.php +2 -4
- includes/forms/class-form.php +7 -0
- languages/mailchimp-for-wp.pot +361 -608
- mailchimp-for-wp.php +12 -8
- readme.txt +14 -2
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_real_52.php +3 -3
- vendor/composer/autoload_static.php +3 -3
CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
#### 4.7.2 - Nov 27, 2019
|
5 |
|
6 |
**Fixes**
|
@@ -1369,7 +1381,7 @@ A huge thank you to [Stefan Oderbolz](http://metaodi.ch/) for various fixed and
|
|
1369 |
|
1370 |
#### 2.2.3 - January 24, 2015
|
1371 |
|
1372 |
-
Minor improvements and additions for compatibility with the [Mailchimp Sync plugin](https://
|
1373 |
|
1374 |
#### 2.2.2 - January 13, 2015
|
1375 |
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
#### 4.7.3 - Dec 4, 2019
|
5 |
+
|
6 |
+
**Fixes**
|
7 |
+
|
8 |
+
- Top Bar & User Sync add-on using API v2 since version 4.7.1.
|
9 |
+
- Revert change in formatter for date fields, breaking all forms with date fields in them.
|
10 |
+
|
11 |
+
**Improvements**
|
12 |
+
|
13 |
+
- Add getter method for raw (unmodified) data on form class.
|
14 |
+
|
15 |
+
|
16 |
#### 4.7.2 - Nov 27, 2019
|
17 |
|
18 |
**Fixes**
|
1381 |
|
1382 |
#### 2.2.3 - January 24, 2015
|
1383 |
|
1384 |
+
Minor improvements and additions for compatibility with the [Mailchimp User Sync plugin](https://mc4wp.com/premium-features/).
|
1385 |
|
1386 |
#### 2.2.2 - January 13, 2015
|
1387 |
|
includes/api/class-api-v3.php
CHANGED
@@ -5,13 +5,11 @@
|
|
5 |
*/
|
6 |
class MC4WP_API_V3 {
|
7 |
|
8 |
-
|
9 |
/**
|
10 |
* @var MC4WP_API_V3_Client
|
11 |
*/
|
12 |
protected $client;
|
13 |
|
14 |
-
|
15 |
/**
|
16 |
* Constructor
|
17 |
*
|
5 |
*/
|
6 |
class MC4WP_API_V3 {
|
7 |
|
|
|
8 |
/**
|
9 |
* @var MC4WP_API_V3_Client
|
10 |
*/
|
11 |
protected $client;
|
12 |
|
|
|
13 |
/**
|
14 |
* Constructor
|
15 |
*
|
includes/class-field-formatter.php
CHANGED
@@ -87,10 +87,7 @@ class MC4WP_Field_Formatter {
|
|
87 |
* @return string
|
88 |
*/
|
89 |
public function date( $value, $options = null ) {
|
90 |
-
$format = is_object( $options ) && isset( $options->date_format ) ? $options->date_format : 'Y-m-d';
|
91 |
-
|
92 |
if ( is_array( $value ) ) {
|
93 |
-
|
94 |
// allow for "year", "month" and "day" keys
|
95 |
if ( isset( $value['year'] ) && isset( $value['month'] ) && isset( $value['day'] ) ) {
|
96 |
$value = $value['year'] . '/' . $value['month'] . '/' . $value['day'];
|
@@ -105,7 +102,8 @@ class MC4WP_Field_Formatter {
|
|
105 |
return $value;
|
106 |
}
|
107 |
|
108 |
-
|
|
|
109 |
}
|
110 |
|
111 |
/**
|
87 |
* @return string
|
88 |
*/
|
89 |
public function date( $value, $options = null ) {
|
|
|
|
|
90 |
if ( is_array( $value ) ) {
|
|
|
91 |
// allow for "year", "month" and "day" keys
|
92 |
if ( isset( $value['year'] ) && isset( $value['month'] ) && isset( $value['day'] ) ) {
|
93 |
$value = $value['year'] . '/' . $value['month'] . '/' . $value['day'];
|
102 |
return $value;
|
103 |
}
|
104 |
|
105 |
+
// Mailchimp expects a Y-m-d format no matter the display preference
|
106 |
+
return (string) gmdate( 'Y-m-d', strtotime( $value ) );
|
107 |
}
|
108 |
|
109 |
/**
|
includes/forms/class-form.php
CHANGED
@@ -617,6 +617,13 @@ class MC4WP_Form {
|
|
617 |
return $data;
|
618 |
}
|
619 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
/**
|
621 |
* Get array of name attributes for the required fields in this form.
|
622 |
*
|
617 |
return $data;
|
618 |
}
|
619 |
|
620 |
+
/**
|
621 |
+
* @return array
|
622 |
+
*/
|
623 |
+
public function get_raw_data() {
|
624 |
+
return $this->raw_data;
|
625 |
+
}
|
626 |
+
|
627 |
/**
|
628 |
* Get array of name attributes for the required fields in this form.
|
629 |
*
|
languages/mailchimp-for-wp.pot
CHANGED
@@ -1,91 +1,63 @@
|
|
1 |
-
# Copyright (C) 2019
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
-
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
7 |
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"X-
|
|
|
|
|
16 |
|
17 |
-
|
18 |
-
msgid "
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#. Plugin URI of the plugin
|
22 |
-
msgid "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#. Description of the plugin
|
26 |
-
msgid "Mailchimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site."
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#. Author of the plugin
|
30 |
-
msgid "ibericode"
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
#. Author URI of the plugin
|
34 |
-
msgid "https://ibericode.com/"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: config/default-form-content.php:3
|
38 |
-
#: includes/class-mailchimp.php:191
|
39 |
-
#: includes/forms/class-admin.php:82
|
40 |
-
msgid "Email address"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: config/default-form-content.php:4
|
44 |
-
msgid "Your email address"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#:
|
48 |
-
msgid "
|
49 |
msgstr ""
|
50 |
|
51 |
-
#:
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#:
|
56 |
-
msgid "
|
57 |
msgstr ""
|
58 |
|
59 |
-
#:
|
60 |
-
msgid "
|
61 |
msgstr ""
|
62 |
|
63 |
-
#:
|
64 |
-
msgid "
|
65 |
msgstr ""
|
66 |
|
67 |
-
#:
|
68 |
-
msgid "
|
69 |
msgstr ""
|
70 |
|
71 |
-
#:
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#:
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#:
|
80 |
-
msgid "
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
-
msgid "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/admin/class-admin-texts.php:66
|
88 |
-
#: includes/forms/views/edit-form.php:6
|
89 |
msgid "Settings"
|
90 |
msgstr ""
|
91 |
|
@@ -105,9 +77,7 @@ msgstr ""
|
|
105 |
msgid "This is a premium feature. Please upgrade to Mailchimp for WordPress Premium to be able to use it."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/admin/class-admin.php:302
|
109 |
-
#: includes/forms/views/parts/add-fields-help.php:47
|
110 |
-
#: includes/views/parts/lists-overview.php:10
|
111 |
msgid "Renew Mailchimp lists"
|
112 |
msgstr ""
|
113 |
|
@@ -128,13 +98,10 @@ msgid "Mailchimp API Settings"
|
|
128 |
msgstr ""
|
129 |
|
130 |
#: includes/admin/class-admin.php:334
|
131 |
-
#: integrations/ninja-forms/class-action.php:21
|
132 |
msgid "Mailchimp"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/admin/class-admin.php:340
|
136 |
-
#: includes/views/other-settings.php:60
|
137 |
-
#: includes/views/other-settings.php:70
|
138 |
msgid "Other Settings"
|
139 |
msgstr ""
|
140 |
|
@@ -166,8 +133,7 @@ msgstr ""
|
|
166 |
msgid "To get started with Mailchimp for WordPress, please <a href=\"%s\">enter your Mailchimp API key on the settings page of the plugin</a>."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/admin/class-ads.php:37
|
170 |
-
#: includes/admin/class-ads.php:38
|
171 |
msgid "Add-ons"
|
172 |
msgstr ""
|
173 |
|
@@ -215,8 +181,7 @@ msgstr ""
|
|
215 |
msgid "First Name"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/admin/class-ads.php:140
|
219 |
-
#: includes/forms/class-admin.php:106
|
220 |
msgid "Subscribe"
|
221 |
msgstr ""
|
222 |
|
@@ -244,54 +209,10 @@ msgstr ""
|
|
244 |
msgid "Once a month"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
248 |
-
msgid "Default sign-up form"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
#: includes/api/class-api.php:84
|
252 |
msgid "Read more about common connectivity issues."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-dynamic-content-tags.php:27
|
256 |
-
msgid "Data from a cookie."
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: includes/class-dynamic-content-tags.php:33
|
260 |
-
msgid "The email address of the current visitor (if known)."
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: includes/class-dynamic-content-tags.php:38
|
264 |
-
msgid "The URL of the page."
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: includes/class-dynamic-content-tags.php:43
|
268 |
-
msgid "The path of the page."
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: includes/class-dynamic-content-tags.php:48
|
272 |
-
msgid "The current date. Example: %s."
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: includes/class-dynamic-content-tags.php:53
|
276 |
-
msgid "The current time. Example: %s."
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: includes/class-dynamic-content-tags.php:58
|
280 |
-
msgid "The site's language. Example: %s."
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: includes/class-dynamic-content-tags.php:63
|
284 |
-
msgid "The visitor's IP address. Example: %s."
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: includes/class-dynamic-content-tags.php:68
|
288 |
-
msgid "The property of the currently logged-in user."
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: includes/class-dynamic-content-tags.php:74
|
292 |
-
msgid "Property of the current page or post."
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
#: includes/forms/class-admin.php:70
|
296 |
msgid "Add to form"
|
297 |
msgstr ""
|
@@ -452,18 +373,15 @@ msgstr ""
|
|
452 |
msgid "ZIP"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/forms/class-admin.php:123
|
456 |
-
#: includes/forms/views/edit-form.php:24
|
457 |
msgid "Forms"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/forms/class-admin.php:124
|
461 |
-
#: includes/forms/views/edit-form.php:26
|
462 |
msgid "Form"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/forms/class-admin.php:163
|
466 |
-
#: includes/forms/class-admin.php:295
|
467 |
msgid "<strong>Success!</strong> Form successfully saved."
|
468 |
msgstr ""
|
469 |
|
@@ -475,8 +393,7 @@ msgstr ""
|
|
475 |
msgid "Go back"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/forms/class-admin.php:463
|
479 |
-
#: includes/forms/class-widget.php:31
|
480 |
msgid "Mailchimp Sign-Up Form"
|
481 |
msgstr ""
|
482 |
|
@@ -496,8 +413,7 @@ msgstr ""
|
|
496 |
msgid "Data from the URL or a submitted form."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/forms/class-form-tags.php:45
|
500 |
-
#: includes/integrations/class-integration-tags.php:30
|
501 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
502 |
msgstr ""
|
503 |
|
@@ -509,43 +425,11 @@ msgstr ""
|
|
509 |
msgid "Enable Google reCaptcha"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: includes/forms/class-google-recaptcha.php:168
|
513 |
-
#: includes/forms/views/tabs/form-settings.php:51
|
514 |
-
#: includes/forms/views/tabs/form-settings.php:66
|
515 |
-
#: includes/forms/views/tabs/form-settings.php:87
|
516 |
-
#: includes/forms/views/tabs/form-settings.php:135
|
517 |
-
#: includes/integrations/views/integration-settings.php:66
|
518 |
-
#: includes/integrations/views/integration-settings.php:90
|
519 |
-
#: includes/integrations/views/integration-settings.php:168
|
520 |
-
#: includes/integrations/views/integration-settings.php:192
|
521 |
-
#: includes/integrations/views/integration-settings.php:209
|
522 |
-
#: includes/integrations/views/integration-settings.php:232
|
523 |
-
#: includes/integrations/views/integration-settings.php:257
|
524 |
-
#: includes/views/other-settings.php:21
|
525 |
-
#: integrations/contact-form-7/class-contact-form-7.php:74
|
526 |
-
#: integrations/gravity-forms/class-gravity-forms.php:116
|
527 |
-
#: integrations/gravity-forms/class-gravity-forms.php:128
|
528 |
-
#: integrations/wpforms/class-field.php:253
|
529 |
msgid "Yes"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: includes/forms/class-google-recaptcha.php:170
|
533 |
-
#: includes/forms/views/tabs/form-settings.php:55
|
534 |
-
#: includes/forms/views/tabs/form-settings.php:70
|
535 |
-
#: includes/forms/views/tabs/form-settings.php:91
|
536 |
-
#: includes/forms/views/tabs/form-settings.php:139
|
537 |
-
#: includes/integrations/views/integration-settings.php:67
|
538 |
-
#: includes/integrations/views/integration-settings.php:91
|
539 |
-
#: includes/integrations/views/integration-settings.php:169
|
540 |
-
#: includes/integrations/views/integration-settings.php:193
|
541 |
-
#: includes/integrations/views/integration-settings.php:213
|
542 |
-
#: includes/integrations/views/integration-settings.php:236
|
543 |
-
#: includes/integrations/views/integration-settings.php:261
|
544 |
-
#: includes/views/other-settings.php:25
|
545 |
-
#: integrations/contact-form-7/class-contact-form-7.php:74
|
546 |
-
#: integrations/gravity-forms/class-gravity-forms.php:117
|
547 |
-
#: integrations/gravity-forms/class-gravity-forms.php:129
|
548 |
-
#: integrations/wpforms/class-field.php:253
|
549 |
msgid "No"
|
550 |
msgstr ""
|
551 |
|
@@ -581,778 +465,647 @@ msgstr ""
|
|
581 |
msgid "You can edit your sign-up form in the <a href=\"%s\">Mailchimp for WordPress form settings</a>."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/
|
585 |
-
|
586 |
-
msgid "Add new form"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: includes/
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/forms/views/
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: includes/
|
598 |
-
msgid "
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/
|
602 |
-
msgid "
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/
|
606 |
-
msgid "
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: includes/
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/
|
614 |
-
msgid "
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/
|
618 |
-
|
619 |
-
#: includes/integrations/views/integrations.php:99
|
620 |
-
#: includes/views/general-settings.php:7
|
621 |
-
#: includes/views/other-settings.php:58
|
622 |
-
msgid "You are here: "
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/
|
626 |
-
msgid "
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/
|
630 |
-
msgid "
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/
|
634 |
-
msgid "
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: includes/
|
638 |
-
|
639 |
-
msgid "Use the shortcode %s to display this form inside a post, page or text widget."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: includes/
|
643 |
-
|
644 |
-
msgid "Add more fields"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: includes/
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: includes/
|
656 |
-
msgid "
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/
|
668 |
-
msgid "
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/
|
672 |
-
msgid "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/
|
676 |
-
msgid "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: includes/
|
684 |
-
msgid "
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: includes/
|
688 |
-
msgid "
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: includes/
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/forms/views/
|
704 |
-
msgid "
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/forms/views/
|
708 |
-
msgid "
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: includes/forms/views/
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: includes/forms/views/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/forms/views/
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: includes/forms/views/
|
724 |
-
msgid "
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: includes/forms/views/
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: includes/forms/views/
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: includes/forms/views/
|
736 |
-
msgid "Form
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: includes/forms/views/
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: includes/forms/views/
|
744 |
-
msgid "Enter the
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: includes/forms/views/tabs/form-fields.php:
|
748 |
-
msgid "
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: includes/
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/
|
760 |
-
msgid "
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/
|
764 |
-
msgid "
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/
|
768 |
-
msgid "
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: includes/
|
772 |
-
msgid "
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: includes/
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/
|
780 |
-
msgid "
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: includes/forms/views/tabs/form-messages.php:37
|
784 |
-
msgid "Already subscribed"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: includes/forms/views/tabs/form-messages.php:40
|
788 |
-
msgid "The text that shows when the given email is already subscribed to the selected list(s)."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: includes/forms/views/tabs/form-messages.php:44
|
792 |
-
msgid "General error"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: includes/forms/views/tabs/form-messages.php:47
|
796 |
-
msgid "The text that shows when a general error occured."
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: includes/forms/views/tabs/form-messages.php:51
|
800 |
-
msgid "Unsubscribed"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: includes/forms/views/tabs/form-messages.php:54
|
804 |
-
msgid "When using the unsubscribe method, this is the text that shows when the given email address is successfully unsubscribed from the selected list(s)."
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: includes/forms/views/tabs/form-messages.php:58
|
808 |
-
msgid "Not subscribed"
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: includes/forms/views/tabs/form-messages.php:61
|
812 |
-
msgid "When using the unsubscribe method, this is the text that shows when the given email address is not on the selected list(s)."
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: includes/forms/views/tabs/form-messages.php:65
|
816 |
-
msgid "No list selected"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/
|
820 |
-
msgid "
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: includes/
|
824 |
-
msgid "
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/
|
828 |
-
msgid "
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/forms/views/tabs/form-
|
832 |
-
msgid "
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/
|
836 |
-
msgid "
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/
|
840 |
-
msgid "
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/
|
844 |
-
msgid "
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: includes/
|
848 |
-
|
849 |
-
msgid "No lists found, <a href=\"%s\">are you connected to Mailchimp</a>?"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: includes/
|
853 |
-
msgid "
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: includes/
|
857 |
-
|
858 |
-
msgid "Use double opt-in?"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: includes/
|
862 |
-
msgid "
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/
|
866 |
-
msgid "
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/forms/views/tabs/form-settings.php:62
|
870 |
-
#: includes/integrations/views/integration-settings.php:228
|
871 |
-
#: integrations/ninja-forms/class-action.php:48
|
872 |
msgid "Update existing subscribers?"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/forms/views/tabs/form-settings.php:72
|
876 |
-
#: includes/integrations/views/integration-settings.php:238
|
877 |
msgid "Select \"yes\" if you want to update existing subscribers with the data that is sent."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/forms/views/tabs/form-settings.php:83
|
881 |
-
#: includes/integrations/views/integration-settings.php:253
|
882 |
msgid "Replace interest groups?"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: includes/forms/views/tabs/form-settings.php:94
|
886 |
-
#: includes/integrations/views/integration-settings.php:264
|
887 |
msgid "Select \"no\" if you want to add the selected interests to any previously selected interests when updating a subscriber."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/forms/views/tabs/form-settings.php:95
|
891 |
-
#: includes/integrations/views/integration-settings.php:265
|
892 |
msgid "What does this do?"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/
|
896 |
-
msgid "
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: includes/forms/views/tabs/form-settings.php:103
|
900 |
-
msgid "Example: My tag, another tag"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: includes/forms/views/tabs/form-settings.php:105
|
904 |
-
msgid "The listed tags will be applied to all new subscribers added by this form."
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
#: includes/forms/views/tabs/form-settings.php:106
|
908 |
-
msgid "Separate multiple values with a comma."
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: includes/forms/views/tabs/form-settings.php:121
|
912 |
-
msgid "Form behaviour"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: includes/forms/views/tabs/form-settings.php:131
|
916 |
-
msgid "Hide form after a successful sign-up?"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: includes/forms/views/tabs/form-settings.php:142
|
920 |
-
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: includes/forms/views/tabs/form-settings.php:147
|
924 |
-
msgid "Redirect to URL after successful sign-ups"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: includes/forms/views/tabs/form-settings.php:149
|
928 |
-
msgid "Example: %s"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: includes/forms/views/tabs/form-settings.php:151
|
932 |
-
msgid "Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete (absolute) URLs, including <code>http://</code>."
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: includes/forms/views/tabs/form-settings.php:154
|
936 |
-
msgid "Your \"subscribed\" message will not show when redirecting to another page, so make sure to let your visitors know they were successfully subscribed."
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: includes/integrations/class-admin.php:73
|
940 |
-
#: includes/integrations/class-admin.php:74
|
941 |
-
#: includes/integrations/views/integration-settings.php:10
|
942 |
-
#: includes/integrations/views/integrations.php:101
|
943 |
-
#: includes/integrations/views/integrations.php:109
|
944 |
-
#: includes/integrations/views/integrations.php:123
|
945 |
-
msgid "Integrations"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: includes/integrations/class-integration.php:69
|
949 |
-
msgid "Sign me up for the newsletter!"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: includes/integrations/views/integration-settings.php:20
|
953 |
-
msgid "%s integration"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: includes/integrations/views/integration-settings.php:27
|
957 |
-
msgid "The selected Mailchimp lists require non-default fields, which may prevent this integration from working."
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: includes/integrations/views/integration-settings.php:28
|
961 |
-
msgid "Please ensure you <a href=\"%1$s\">configure the plugin to send all required fields</a> or <a href=\"%2$s\">log into your Mailchimp account</a> and make sure only the email & name fields are marked as required fields for the selected list(s)."
|
962 |
-
msgstr ""
|
963 |
-
|
964 |
-
#: includes/integrations/views/integration-settings.php:64
|
965 |
-
msgid "Enabled?"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/integrations/views/
|
969 |
-
msgid "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/integrations/views/
|
973 |
-
msgid "
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/integrations/views/
|
977 |
-
|
978 |
-
msgid "(recommended)"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/integrations/views/
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: includes/integrations/views/
|
986 |
-
|
987 |
-
#: integrations/gravity-forms/class-gravity-forms.php:135
|
988 |
-
msgid "<strong>Warning: </strong> enabling this may affect your <a href=\"%s\">GDPR compliance</a>."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: includes/integrations/views/
|
992 |
-
msgid "
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/integrations/views/
|
996 |
-
|
997 |
-
msgid "Select the list(s) to which people who check the checkbox should be subscribed."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: includes/integrations/views/
|
1001 |
-
msgid "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
|
1005 |
-
|
|
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/
|
1009 |
-
|
1010 |
-
msgid "Pre-check the checkbox?"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: includes/
|
1014 |
-
|
1015 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/
|
1019 |
-
msgid "
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/
|
1023 |
-
msgid "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/
|
1027 |
-
|
1028 |
-
msgid "Double opt-in?"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: includes/
|
1032 |
-
|
1033 |
-
msgid "Select \"yes\" if you want people to confirm their email address before being subscribed (recommended)"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: includes/
|
1037 |
-
msgid "
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: includes/
|
1041 |
-
msgid "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: includes/
|
1045 |
-
msgid "
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: includes/
|
1049 |
-
msgid "
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/
|
1053 |
-
msgid "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/
|
1057 |
-
msgid "
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/
|
1061 |
-
|
1062 |
-
msgid "Status"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/views/
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: includes/views/
|
1082 |
-
msgid "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/views/
|
1086 |
-
msgid "
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/views/
|
1090 |
-
msgid "
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/views/
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: includes/views/
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/views/
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/views/
|
1106 |
-
msgid "
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: includes/views/
|
1110 |
-
msgid "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/views/
|
1114 |
-
msgid "
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/views/
|
1118 |
-
msgid "
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/views/
|
1122 |
-
msgid "
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: includes/views/
|
1126 |
-
msgid "
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/views/
|
1130 |
-
msgid "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/views/
|
1134 |
-
msgid "
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/views/
|
1138 |
-
msgid "
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/views/
|
1142 |
-
msgid "
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/views/
|
1146 |
-
msgid "
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/views/
|
1150 |
-
msgid "
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: includes/views/
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/views/
|
1158 |
-
msgid "
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/views/
|
1162 |
-
msgid "
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/views/
|
1166 |
-
msgid "
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
|
1170 |
-
|
1171 |
-
msgid "Mailchimp for WordPress is in need of translations. Is the plugin not translated in your language or do you spot errors with the current translations? Helping out is easy! Please <a href=\"%s\">help translate the plugin using your WordPress.org account</a>."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/views/
|
1175 |
-
msgid "
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/views/
|
1179 |
-
msgid "
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/views/
|
1183 |
-
msgid "
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: includes/views/
|
1187 |
-
msgid "
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/views/
|
1191 |
-
msgid "
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/views/
|
1195 |
-
msgid "
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: includes/views/
|
1199 |
-
msgid "
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/views/
|
1203 |
-
msgid "
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/views/
|
1207 |
-
msgid "
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/views/
|
1211 |
-
msgid "
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/views/
|
1215 |
-
msgid "
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/views/
|
1219 |
-
msgid "
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/views/
|
1223 |
-
msgid "The
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/views/
|
1227 |
-
msgid "
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/views/
|
1231 |
-
msgid "
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/views/
|
1235 |
-
msgid "
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/views/
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/views/
|
1243 |
-
msgid "
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/views/
|
1247 |
-
msgid "
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/views/
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#:
|
1255 |
-
msgid "
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#:
|
1259 |
-
msgid "
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#:
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
|
1267 |
-
|
1268 |
-
msgid "To integrate with Gravity Forms, add the \"Mailchimp for WordPress\" field to <a href=\"%s\">one of your Gravity Forms forms</a>."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#:
|
1272 |
-
msgid "
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#:
|
1276 |
-
|
1277 |
-
msgid "Mailchimp list"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#:
|
1281 |
-
msgid "
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#:
|
1285 |
-
msgid "
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#:
|
1289 |
-
msgid "
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#:
|
1293 |
-
msgid "Mailchimp
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#:
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#:
|
1301 |
-
msgid "
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#:
|
1305 |
-
msgid "
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#:
|
1309 |
-
msgid "
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#:
|
1313 |
-
msgid "
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#:
|
1317 |
-
msgid "
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#:
|
1321 |
-
msgid "
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#:
|
1325 |
-
msgid "
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#:
|
1329 |
-
msgid "
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#:
|
1333 |
-
msgid "
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#:
|
1337 |
-
msgid "
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#:
|
1341 |
-
msgid "
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#:
|
1345 |
-
msgid "
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#:
|
1349 |
-
msgid "
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#:
|
1353 |
-
msgid "
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#:
|
1357 |
-
msgid "
|
1358 |
msgstr ""
|
1 |
+
# Copyright (C) 2019 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: mailchimp-for-wp\n"
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"X-Poedit-Basepath: ..\n"
|
10 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
11 |
+
"X-Poedit-SearchPath-0: .\n"
|
12 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
|
16 |
+
#: includes/class-dynamic-content-tags.php:27
|
17 |
+
msgid "Data from a cookie."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: includes/class-dynamic-content-tags.php:33
|
21 |
+
msgid "The email address of the current visitor (if known)."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/class-dynamic-content-tags.php:38
|
25 |
+
msgid "The URL of the page."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: includes/class-dynamic-content-tags.php:43
|
29 |
+
msgid "The path of the page."
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/class-dynamic-content-tags.php:48
|
33 |
+
msgid "The current date. Example: %s."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: includes/class-dynamic-content-tags.php:53
|
37 |
+
msgid "The current time. Example: %s."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: includes/class-dynamic-content-tags.php:58
|
41 |
+
msgid "The site's language. Example: %s."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/class-dynamic-content-tags.php:63
|
45 |
+
msgid "The visitor's IP address. Example: %s."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/class-dynamic-content-tags.php:68
|
49 |
+
msgid "The property of the currently logged-in user."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/class-dynamic-content-tags.php:74
|
53 |
+
msgid "Property of the current page or post."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/class-mailchimp.php:191, includes/forms/class-admin.php:82
|
57 |
+
msgid "Email address"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/admin/class-admin-texts.php:66, includes/forms/views/edit-form.php:6
|
|
|
61 |
msgid "Settings"
|
62 |
msgstr ""
|
63 |
|
77 |
msgid "This is a premium feature. Please upgrade to Mailchimp for WordPress Premium to be able to use it."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/admin/class-admin.php:302, includes/views/parts/lists-overview.php:10, includes/forms/views/parts/add-fields-help.php:47
|
|
|
|
|
81 |
msgid "Renew Mailchimp lists"
|
82 |
msgstr ""
|
83 |
|
98 |
msgstr ""
|
99 |
|
100 |
#: includes/admin/class-admin.php:334
|
|
|
101 |
msgid "Mailchimp"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/admin/class-admin.php:340, includes/views/other-settings.php:60, includes/views/other-settings.php:70
|
|
|
|
|
105 |
msgid "Other Settings"
|
106 |
msgstr ""
|
107 |
|
133 |
msgid "To get started with Mailchimp for WordPress, please <a href=\"%s\">enter your Mailchimp API key on the settings page of the plugin</a>."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/admin/class-ads.php:37, includes/admin/class-ads.php:38
|
|
|
137 |
msgid "Add-ons"
|
138 |
msgstr ""
|
139 |
|
181 |
msgid "First Name"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/admin/class-ads.php:140, includes/forms/class-admin.php:106
|
|
|
185 |
msgid "Subscribe"
|
186 |
msgstr ""
|
187 |
|
209 |
msgid "Once a month"
|
210 |
msgstr ""
|
211 |
|
|
|
|
|
|
|
|
|
212 |
#: includes/api/class-api.php:84
|
213 |
msgid "Read more about common connectivity issues."
|
214 |
msgstr ""
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
#: includes/forms/class-admin.php:70
|
217 |
msgid "Add to form"
|
218 |
msgstr ""
|
373 |
msgid "ZIP"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: includes/forms/class-admin.php:123, includes/forms/views/edit-form.php:24
|
|
|
377 |
msgid "Forms"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/forms/class-admin.php:124, includes/forms/views/edit-form.php:26
|
|
|
381 |
msgid "Form"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/forms/class-admin.php:163, includes/forms/class-admin.php:295
|
|
|
385 |
msgid "<strong>Success!</strong> Form successfully saved."
|
386 |
msgstr ""
|
387 |
|
393 |
msgid "Go back"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/forms/class-admin.php:463, includes/forms/class-widget.php:31
|
|
|
397 |
msgid "Mailchimp Sign-Up Form"
|
398 |
msgstr ""
|
399 |
|
413 |
msgid "Data from the URL or a submitted form."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/forms/class-form-tags.php:45, includes/integrations/class-integration-tags.php:30
|
|
|
417 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
418 |
msgstr ""
|
419 |
|
425 |
msgid "Enable Google reCaptcha"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/forms/class-google-recaptcha.php:168, includes/views/other-settings.php:21, includes/integrations/views/integration-settings.php:66, includes/integrations/views/integration-settings.php:90, includes/integrations/views/integration-settings.php:168, includes/integrations/views/integration-settings.php:192, includes/integrations/views/integration-settings.php:209, includes/integrations/views/integration-settings.php:232, includes/integrations/views/integration-settings.php:257, includes/forms/views/tabs/form-settings.php:51, includes/forms/views/tabs/form-settings.php:66, includes/forms/views/tabs/form-settings.php:87, includes/forms/views/tabs/form-settings.php:135
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
msgid "Yes"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/forms/class-google-recaptcha.php:170, includes/views/other-settings.php:25, includes/integrations/views/integration-settings.php:67, includes/integrations/views/integration-settings.php:91, includes/integrations/views/integration-settings.php:169, includes/integrations/views/integration-settings.php:193, includes/integrations/views/integration-settings.php:213, includes/integrations/views/integration-settings.php:236, includes/integrations/views/integration-settings.php:261, includes/forms/views/tabs/form-settings.php:55, includes/forms/views/tabs/form-settings.php:70, includes/forms/views/tabs/form-settings.php:91, includes/forms/views/tabs/form-settings.php:139
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
msgid "No"
|
434 |
msgstr ""
|
435 |
|
465 |
msgid "You can edit your sign-up form in the <a href=\"%s\">Mailchimp for WordPress form settings</a>."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/integrations/class-admin.php:73, includes/integrations/class-admin.php:74, includes/integrations/views/integration-settings.php:10, includes/integrations/views/integrations.php:101, includes/integrations/views/integrations.php:109, includes/integrations/views/integrations.php:123
|
469 |
+
msgid "Integrations"
|
|
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/integrations/class-integration.php:69
|
473 |
+
msgid "Sign me up for the newsletter!"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/views/general-settings.php:7, includes/views/other-settings.php:58, includes/forms/views/edit-form.php:22, includes/integrations/views/integration-settings.php:8, includes/integrations/views/integrations.php:99
|
477 |
+
msgid "You are here: "
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/views/general-settings.php:18
|
481 |
+
msgid "API Settings"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/views/general-settings.php:34, includes/integrations/views/integrations.php:62
|
485 |
+
msgid "Status"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/views/general-settings.php:40
|
489 |
+
msgid "CONNECTED"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/views/general-settings.php:44
|
493 |
+
msgid "NOT CONNECTED"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/views/general-settings.php:53
|
497 |
+
msgid "API Key"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/views/general-settings.php:55
|
501 |
+
msgid "Your Mailchimp API key"
|
|
|
|
|
|
|
|
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/views/general-settings.php:57
|
505 |
+
msgid "The API key for connecting with your Mailchimp account."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/views/general-settings.php:58
|
509 |
+
msgid "Get your API key here."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/views/general-settings.php:63
|
513 |
+
msgid "You defined your Mailchimp API key using the <code>MC4WP_API_KEY</code> constant."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/views/other-settings.php:14
|
517 |
+
msgid "Miscellaneous settings"
|
|
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/views/other-settings.php:17
|
521 |
+
msgid "Usage Tracking"
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: includes/views/other-settings.php:29
|
525 |
+
msgid "Allow us to anonymously track how this plugin is used to help us make it better fit your needs."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: includes/views/other-settings.php:31
|
529 |
+
msgid "This is what we track."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/views/other-settings.php:37
|
533 |
+
msgid "Logging"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/views/other-settings.php:40
|
537 |
+
msgid "Errors & warnings only"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/views/other-settings.php:41
|
541 |
+
msgid "Everything"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: includes/views/other-settings.php:44
|
545 |
+
msgid "Determines what events should be written to <a href=\"%s\">the debug log</a> (see below)."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/views/other-settings.php:99
|
549 |
+
msgid "Debug Log"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/views/other-settings.php:99
|
553 |
+
msgid "Filter.."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: includes/views/other-settings.php:104
|
557 |
+
msgid "Log file is not writable."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/views/other-settings.php:105
|
561 |
+
msgid "Please ensure %1$s has the proper <a href=\"%2$s\">file permissions</a>."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/views/other-settings.php:126
|
565 |
+
msgid "Nothing here. Which means there are no errors!"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/views/other-settings.php:136
|
569 |
+
msgid "Empty Log"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/views/other-settings.php:144
|
573 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
577 |
+
msgid "Default sign-up form"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/forms/views/add-form.php:10, includes/forms/views/add-form.php:70
|
581 |
+
msgid "Add new form"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/forms/views/add-form.php:27
|
585 |
+
msgid "What is the name of this form?"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/forms/views/add-form.php:30
|
589 |
+
msgid "Enter your form title.."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/forms/views/add-form.php:37
|
593 |
+
msgid "To which Mailchimp lists should this form subscribe?"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/forms/views/add-form.php:62
|
597 |
+
msgid "No lists found. Did you <a href=\"%s\">connect with Mailchimp</a>?"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/forms/views/edit-form.php:4
|
601 |
+
msgid "Fields"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/forms/views/edit-form.php:5
|
605 |
+
msgid "Messages"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/forms/views/edit-form.php:7
|
609 |
+
msgid "Appearance"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/forms/views/edit-form.php:36
|
613 |
+
msgid "Edit Form"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/forms/views/edit-form.php:61
|
617 |
+
msgid "Enter form title here"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/forms/views/edit-form.php:65
|
621 |
+
msgid "Enter the title of your sign-up form"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/forms/views/edit-form.php:69, includes/forms/views/tabs/form-fields.php:40
|
625 |
+
msgid "Use the shortcode %s to display this form inside a post, page or text widget."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/integrations/views/integration-settings.php:20
|
629 |
+
msgid "%s integration"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/integrations/views/integration-settings.php:27
|
633 |
+
msgid "The selected Mailchimp lists require non-default fields, which may prevent this integration from working."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/integrations/views/integration-settings.php:28
|
637 |
+
msgid "Please ensure you <a href=\"%1$s\">configure the plugin to send all required fields</a> or <a href=\"%2$s\">log into your Mailchimp account</a> and make sure only the email & name fields are marked as required fields for the selected list(s)."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/integrations/views/integration-settings.php:64
|
641 |
+
msgid "Enabled?"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/integrations/views/integration-settings.php:68
|
645 |
+
msgid "Enable the %s integration? This will add a sign-up checkbox to the form."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/integrations/views/integration-settings.php:88
|
649 |
+
msgid "Implicit?"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: includes/integrations/views/integration-settings.php:91, includes/integrations/views/integration-settings.php:169
|
653 |
+
msgid "(recommended)"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: includes/integrations/views/integration-settings.php:95
|
657 |
+
msgid "Select \"yes\" if you want to subscribe people without asking them explicitly."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: includes/integrations/views/integration-settings.php:98, includes/integrations/views/integration-settings.php:174
|
661 |
+
msgid "<strong>Warning: </strong> enabling this may affect your <a href=\"%s\">GDPR compliance</a>."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/integrations/views/integration-settings.php:113
|
665 |
+
msgid "Mailchimp Lists"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: includes/integrations/views/integration-settings.php:127
|
669 |
+
msgid "Select the list(s) to which people who check the checkbox should be subscribed."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/integrations/views/integration-settings.php:131, includes/forms/views/tabs/form-settings.php:20
|
673 |
+
msgid "No lists found, <a href=\"%s\">are you connected to Mailchimp</a>?"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/integrations/views/integration-settings.php:147
|
677 |
+
msgid "Checkbox label text"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/integrations/views/integration-settings.php:150
|
681 |
+
msgid "HTML tags like %s are allowed in the label text."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/integrations/views/integration-settings.php:166
|
685 |
+
msgid "Pre-check the checkbox?"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/integrations/views/integration-settings.php:172
|
689 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/integrations/views/integration-settings.php:190
|
693 |
+
msgid "Load some default CSS?"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/integrations/views/integration-settings.php:194
|
697 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
|
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/integrations/views/integration-settings.php:205
|
701 |
+
msgid "Double opt-in?"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/integrations/views/integration-settings.php:216
|
705 |
+
msgid "Select \"yes\" if you want people to confirm their email address before being subscribed (recommended)"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/integrations/views/integration-settings.php:228, includes/forms/views/tabs/form-settings.php:62
|
|
|
|
|
709 |
msgid "Update existing subscribers?"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/integrations/views/integration-settings.php:238, includes/forms/views/tabs/form-settings.php:72
|
|
|
713 |
msgid "Select \"yes\" if you want to update existing subscribers with the data that is sent."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/integrations/views/integration-settings.php:253, includes/forms/views/tabs/form-settings.php:83
|
|
|
717 |
msgid "Replace interest groups?"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/integrations/views/integration-settings.php:264, includes/forms/views/tabs/form-settings.php:94
|
|
|
721 |
msgid "Select \"no\" if you want to add the selected interests to any previously selected interests when updating a subscriber."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: includes/integrations/views/integration-settings.php:265, includes/forms/views/tabs/form-settings.php:95
|
|
|
725 |
msgid "What does this do?"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/integrations/views/integrations.php:20
|
729 |
+
msgid "Configure this integration"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/integrations/views/integrations.php:36
|
733 |
+
msgid "Active"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/integrations/views/integrations.php:38
|
737 |
+
msgid "Inactive"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/integrations/views/integrations.php:40
|
741 |
+
msgid "Not installed"
|
|
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/integrations/views/integrations.php:60
|
745 |
+
msgid "Name"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/integrations/views/integrations.php:61
|
749 |
+
msgid "Description"
|
|
|
|
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/integrations/views/integrations.php:115
|
753 |
+
msgid "The table below shows all available integrations."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/integrations/views/integrations.php:116
|
757 |
+
msgid "Click on the name of an integration to edit all settings specific to that integration."
|
|
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/integrations/views/integrations.php:126
|
761 |
+
msgid "Greyed out integrations will become available after installing & activating the corresponding plugin."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#. translators: %s links to the WordPress.org translation project
|
765 |
+
#: includes/views/parts/admin-footer.php:14
|
766 |
+
msgid "Mailchimp for WordPress is in need of translations. Is the plugin not translated in your language or do you spot errors with the current translations? Helping out is easy! Please <a href=\"%s\">help translate the plugin using your WordPress.org account</a>."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/views/parts/admin-footer.php:32
|
770 |
+
msgid "This plugin is not developed by or affiliated with Mailchimp in any way."
|
|
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/views/parts/admin-sidebar.php:11
|
774 |
+
msgid "Looking for help?"
|
|
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/views/parts/admin-sidebar.php:12
|
778 |
+
msgid "We have some resources available to help you in the right direction."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: includes/views/parts/admin-sidebar.php:14
|
782 |
+
msgid "Knowledge Base"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/views/parts/admin-sidebar.php:15
|
786 |
+
msgid "Frequently Asked Questions"
|
|
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/views/parts/admin-sidebar.php:17
|
790 |
+
msgid "If your answer can not be found in the resources listed above, please use the <a href=\"%s\">support forums on WordPress.org</a>."
|
|
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/views/parts/admin-sidebar.php:18
|
794 |
+
msgid "Found a bug? Please <a href=\"%s\">open an issue on GitHub</a>."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/views/parts/admin-sidebar.php:28
|
798 |
+
msgid "Other plugins by ibericode"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/views/parts/admin-sidebar.php:35
|
802 |
+
msgid "Privacy-friendly analytics plugin that does not use any external services."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/views/parts/admin-sidebar.php:41
|
806 |
+
msgid "Pop-ups or boxes that slide-in with a newsletter sign-up form. A sure-fire way to grow your email lists."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/views/parts/admin-sidebar.php:47
|
810 |
+
msgid "Super flexible forms using native HTML. Just like Mailchimp for WordPress forms but for other purposes, like a contact form."
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/views/parts/lists-overview.php:1
|
814 |
+
msgid "Your Mailchimp Account"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/views/parts/lists-overview.php:2
|
818 |
+
msgid "The table below shows your Mailchimp lists and their details. If you just applied changes to your Mailchimp lists, please use the following button to renew the cached lists configuration."
|
|
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/views/parts/lists-overview.php:19
|
822 |
+
msgid "No lists were found in your Mailchimp account"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: includes/views/parts/lists-overview.php:22
|
826 |
+
msgid "A total of %d lists were found in your Mailchimp account."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/views/parts/lists-overview.php:27
|
830 |
+
msgid "List Name"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: includes/views/parts/lists-overview.php:28
|
834 |
+
msgid "ID"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: includes/views/parts/lists-overview.php:29
|
838 |
+
msgid "Subscribers"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/views/parts/lists-overview.php:50
|
842 |
+
msgid "Edit this list in Mailchimp"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: includes/views/parts/lists-overview.php:51
|
846 |
+
msgid "Loading... Please wait."
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: includes/forms/views/parts/add-fields-help.php:4, includes/forms/views/tabs/form-fields.php:10
|
850 |
+
msgid "Add more fields"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: includes/forms/views/parts/add-fields-help.php:9
|
854 |
+
msgid "To add more fields to your form, you will need to create those fields in Mailchimp first."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: includes/forms/views/parts/add-fields-help.php:12
|
858 |
+
msgid "Here's how:"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: includes/forms/views/parts/add-fields-help.php:17
|
862 |
+
msgid "Log in to your Mailchimp account."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: includes/forms/views/parts/add-fields-help.php:22
|
866 |
+
msgid "Add list fields to any of your selected lists."
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/forms/views/parts/add-fields-help.php:23
|
870 |
+
msgid "Clicking the following links will take you to the right screen."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/forms/views/parts/add-fields-help.php:31
|
874 |
+
msgid "Edit list fields for"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/forms/views/parts/add-fields-help.php:42
|
878 |
+
msgid "Click the following button to have Mailchimp for WordPress pick up on your changes."
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
882 |
+
msgid "Add dynamic form variable"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
886 |
+
msgid "The following list of variables can be used to <a href=\"%s\">add some dynamic content to your form or success and error messages</a>."
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
890 |
+
msgid "This allows you to personalise your form or response messages."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: includes/forms/views/tabs/form-appearance.php:5
|
894 |
+
msgid "Inherit from %s theme"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/forms/views/tabs/form-appearance.php:6
|
898 |
+
msgid "Basic"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/forms/views/tabs/form-appearance.php:7
|
902 |
+
msgid "Form Themes"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/forms/views/tabs/form-appearance.php:8
|
906 |
+
msgid "Light Theme"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/forms/views/tabs/form-appearance.php:9
|
910 |
+
msgid "Dark Theme"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/forms/views/tabs/form-appearance.php:10
|
914 |
+
msgid "Red Theme"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: includes/forms/views/tabs/form-appearance.php:11
|
918 |
+
msgid "Green Theme"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/forms/views/tabs/form-appearance.php:12
|
922 |
+
msgid "Blue Theme"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: includes/forms/views/tabs/form-appearance.php:25
|
926 |
+
msgid "Form Appearance"
|
|
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/forms/views/tabs/form-appearance.php:29
|
930 |
+
msgid "Form Style"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: includes/forms/views/tabs/form-appearance.php:50
|
934 |
+
msgid "If you want to load some default CSS styles, select \"basic formatting styles\" or choose one of the color themes"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/forms/views/tabs/form-fields.php:6
|
938 |
+
msgid "Form variables"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/forms/views/tabs/form-fields.php:13
|
942 |
+
msgid "Form Fields"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/forms/views/tabs/form-fields.php:20
|
946 |
+
msgid "Form code"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/forms/views/tabs/form-fields.php:22
|
950 |
+
msgid "Enter the HTML code for your form fields.."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
954 |
+
msgid "Form preview"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: includes/forms/views/tabs/form-fields.php:27
|
958 |
+
msgid "The form may look slightly different than this when shown in a post, page or widget area."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
962 |
+
msgid "Form Messages"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
966 |
+
msgid "Successfully subscribed"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
970 |
+
msgid "The text that shows when an email address is successfully subscribed to the selected list(s)."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
974 |
+
msgid "Invalid email address"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
978 |
+
msgid "The text that shows when an invalid email address is given."
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
982 |
+
msgid "Required field missing"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
986 |
+
msgid "The text that shows when a required field for the selected list(s) is missing."
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
990 |
+
msgid "Already subscribed"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
994 |
+
msgid "The text that shows when the given email is already subscribed to the selected list(s)."
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
998 |
+
msgid "General error"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
1002 |
+
msgid "The text that shows when a general error occured."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
1006 |
+
msgid "Unsubscribed"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
1010 |
+
msgid "When using the unsubscribe method, this is the text that shows when the given email address is successfully unsubscribed from the selected list(s)."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1014 |
+
msgid "Not subscribed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1018 |
+
msgid "When using the unsubscribe method, this is the text that shows when the given email address is not on the selected list(s)."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1022 |
+
msgid "No list selected"
|
|
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1026 |
+
msgid "When offering a list choice, this is the text that shows when no lists were selected."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/forms/views/tabs/form-messages.php:79
|
1030 |
+
msgid "Updated"
|
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/forms/views/tabs/form-messages.php:82
|
1034 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: includes/forms/views/tabs/form-messages.php:94
|
1038 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/forms/views/tabs/form-settings.php:1
|
1042 |
+
msgid "Form Settings"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: includes/forms/views/tabs/form-settings.php:5
|
1046 |
+
msgid "Mailchimp specific settings"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1050 |
+
msgid "Lists this form subscribes to"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/forms/views/tabs/form-settings.php:39
|
1054 |
+
msgid "Select the list(s) to which people who submit this form should be subscribed."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
1058 |
+
msgid "Use double opt-in?"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/forms/views/tabs/form-settings.php:54
|
1062 |
+
msgid "Are you sure you want to disable double opt-in?"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/forms/views/tabs/form-settings.php:57
|
1066 |
+
msgid "We strongly suggest keeping double opt-in enabled. Disabling double opt-in may result in abuse."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/forms/views/tabs/form-settings.php:101
|
1070 |
+
msgid "Subscriber tags"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/forms/views/tabs/form-settings.php:103
|
1074 |
+
msgid "Example: My tag, another tag"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/forms/views/tabs/form-settings.php:105
|
1078 |
+
msgid "The listed tags will be applied to all new subscribers added by this form."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/forms/views/tabs/form-settings.php:106
|
1082 |
+
msgid "Separate multiple values with a comma."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: includes/forms/views/tabs/form-settings.php:121
|
1086 |
+
msgid "Form behaviour"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: includes/forms/views/tabs/form-settings.php:131
|
1090 |
+
msgid "Hide form after a successful sign-up?"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/forms/views/tabs/form-settings.php:142
|
1094 |
+
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/forms/views/tabs/form-settings.php:147
|
1098 |
+
msgid "Redirect to URL after successful sign-ups"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/forms/views/tabs/form-settings.php:149
|
1102 |
+
msgid "Example: %s"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/forms/views/tabs/form-settings.php:151
|
1106 |
+
msgid "Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete (absolute) URLs, including <code>http://</code>."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/forms/views/tabs/form-settings.php:154
|
1110 |
+
msgid "Your \"subscribed\" message will not show when redirecting to another page, so make sure to let your visitors know they were successfully subscribed."
|
1111 |
msgstr ""
|
mailchimp-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MC4WP: Mailchimp for WordPress
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: Mailchimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
|
6 |
-
Version: 4.7.
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
@@ -36,25 +36,29 @@ function _mc4wp_load_plugin()
|
|
36 |
global $mc4wp;
|
37 |
|
38 |
// Don't run if Mailchimp for WP Pro 2.x is activated
|
39 |
-
if (defined('MC4WP_VERSION')) {
|
40 |
return false;
|
41 |
}
|
42 |
|
43 |
// bootstrap the core plugin
|
44 |
-
define('MC4WP_VERSION', '4.7.
|
45 |
-
define('MC4WP_PLUGIN_DIR', dirname(__FILE__) . '/');
|
46 |
-
define('MC4WP_PLUGIN_URL', plugins_url('/', __FILE__));
|
47 |
-
define('MC4WP_PLUGIN_FILE', __FILE__);
|
48 |
|
49 |
// load autoloader if function not yet exists (for compat with sitewide autoloader)
|
50 |
-
if (! function_exists('mc4wp')) {
|
51 |
require_once MC4WP_PLUGIN_DIR . 'vendor/autoload_52.php';
|
52 |
}
|
53 |
|
54 |
require MC4WP_PLUGIN_DIR . '/includes/default-actions.php';
|
55 |
require MC4WP_PLUGIN_DIR . '/includes/default-filters.php';
|
56 |
|
57 |
-
|
|
|
|
|
|
|
|
|
58 |
* @global MC4WP_Container $GLOBALS['mc4wp']
|
59 |
* @name $mc4wp
|
60 |
*/
|
3 |
Plugin Name: MC4WP: Mailchimp for WordPress
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: Mailchimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
|
6 |
+
Version: 4.7.3
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
36 |
global $mc4wp;
|
37 |
|
38 |
// Don't run if Mailchimp for WP Pro 2.x is activated
|
39 |
+
if ( defined( 'MC4WP_VERSION' ) ) {
|
40 |
return false;
|
41 |
}
|
42 |
|
43 |
// bootstrap the core plugin
|
44 |
+
define( 'MC4WP_VERSION', '4.7.3' );
|
45 |
+
define( 'MC4WP_PLUGIN_DIR', dirname(__FILE__) . '/' );
|
46 |
+
define( 'MC4WP_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
47 |
+
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
48 |
|
49 |
// load autoloader if function not yet exists (for compat with sitewide autoloader)
|
50 |
+
if (! function_exists('mc4wp') ) {
|
51 |
require_once MC4WP_PLUGIN_DIR . 'vendor/autoload_52.php';
|
52 |
}
|
53 |
|
54 |
require MC4WP_PLUGIN_DIR . '/includes/default-actions.php';
|
55 |
require MC4WP_PLUGIN_DIR . '/includes/default-filters.php';
|
56 |
|
57 |
+
// require API class manually because Composer's classloader is case-sensitive
|
58 |
+
// but we need it to pass class_exists condition
|
59 |
+
require MC4WP_PLUGIN_DIR . '/includes/api/class-api-v3.php';
|
60 |
+
|
61 |
+
/**
|
62 |
* @global MC4WP_Container $GLOBALS['mc4wp']
|
63 |
* @name $mc4wp
|
64 |
*/
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-f
|
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp form
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.3
|
7 |
-
Stable tag: 4.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Requires PHP: 5.3
|
@@ -197,6 +197,18 @@ The plugin provides various filter & action hooks that allow you to modify or ex
|
|
197 |
== Changelog ==
|
198 |
|
199 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
#### 4.7.2 - Nov 27, 2019
|
201 |
|
202 |
**Fixes**
|
@@ -1565,7 +1577,7 @@ A huge thank you to [Stefan Oderbolz](http://metaodi.ch/) for various fixed and
|
|
1565 |
|
1566 |
#### 2.2.3 - January 24, 2015
|
1567 |
|
1568 |
-
Minor improvements and additions for compatibility with the [Mailchimp Sync plugin](https://
|
1569 |
|
1570 |
#### 2.2.2 - January 13, 2015
|
1571 |
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp form
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.3
|
7 |
+
Stable tag: 4.7.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Requires PHP: 5.3
|
197 |
== Changelog ==
|
198 |
|
199 |
|
200 |
+
#### 4.7.3 - Dec 4, 2019
|
201 |
+
|
202 |
+
**Fixes**
|
203 |
+
|
204 |
+
- Top Bar & User Sync add-on using API v2 since version 4.7.1.
|
205 |
+
- Revert change in formatter for date fields, breaking all forms with date fields in them.
|
206 |
+
|
207 |
+
**Improvements**
|
208 |
+
|
209 |
+
- Add getter method for raw (unmodified) data on form class.
|
210 |
+
|
211 |
+
|
212 |
#### 4.7.2 - Nov 27, 2019
|
213 |
|
214 |
**Fixes**
|
1577 |
|
1578 |
#### 2.2.3 - January 24, 2015
|
1579 |
|
1580 |
+
Minor improvements and additions for compatibility with the [Mailchimp User Sync plugin](https://mc4wp.com/premium-features/).
|
1581 |
|
1582 |
#### 2.2.2 - January 13, 2015
|
1583 |
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit240449e079f81eb74119b90ac782c2b0::getLoader();
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInita8e84463fce5d71080375e6b0641f46f::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit982a28eab8420855eb099ba24fa8d700
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit982a28eab8420855eb099ba24fa8d700
|
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
-
$includeFiles = Composer\Autoload\
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
-
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
function
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit240449e079f81eb74119b90ac782c2b0
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit240449e079f81eb74119b90ac782c2b0', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit240449e079f81eb74119b90ac782c2b0', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit240449e079f81eb74119b90ac782c2b0::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit240449e079f81eb74119b90ac782c2b0::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequire240449e079f81eb74119b90ac782c2b0($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequire240449e079f81eb74119b90ac782c2b0($fileIdentifier, $file)
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit289345e5f665f8ee5e6f37aaf0c3ec22 {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInita8e84463fce5d71080375e6b0641f46f {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInita8e84463fce5d71080375e6b0641f46f', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInita8e84463fce5d71080375e6b0641f46f', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'fca581ae5268210490253d58378748c5' => __DIR__ . '/../..' . '/includes/functions.php',
|
@@ -98,8 +98,8 @@ class ComposerStaticInit982a28eab8420855eb099ba24fa8d700
|
|
98 |
public static function getInitializer(ClassLoader $loader)
|
99 |
{
|
100 |
return \Closure::bind(function () use ($loader) {
|
101 |
-
$loader->prefixesPsr0 =
|
102 |
-
$loader->classMap =
|
103 |
|
104 |
}, null, ClassLoader::class);
|
105 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit240449e079f81eb74119b90ac782c2b0
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'fca581ae5268210490253d58378748c5' => __DIR__ . '/../..' . '/includes/functions.php',
|
98 |
public static function getInitializer(ClassLoader $loader)
|
99 |
{
|
100 |
return \Closure::bind(function () use ($loader) {
|
101 |
+
$loader->prefixesPsr0 = ComposerStaticInit240449e079f81eb74119b90ac782c2b0::$prefixesPsr0;
|
102 |
+
$loader->classMap = ComposerStaticInit240449e079f81eb74119b90ac782c2b0::$classMap;
|
103 |
|
104 |
}, null, ClassLoader::class);
|
105 |
}
|