default-form-content.php
1 month ago
default-form-messages.php
1 year ago
default-form-settings.php
4 months ago
default-settings.php
1 month ago
default-form-messages.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | return [ |
| 4 | 'subscribed' => [ |
| 5 | 'type' => 'success', |
| 6 | 'text' => esc_html__('Thank you, your sign-up request was successful! Please check your email inbox to confirm.', 'mailchimp-for-wp'), |
| 7 | ], |
| 8 | 'updated' => [ |
| 9 | 'type' => 'success', |
| 10 | 'text' => esc_html__('Thank you, your records have been updated!', 'mailchimp-for-wp'), |
| 11 | ], |
| 12 | 'unsubscribed' => [ |
| 13 | 'type' => 'success', |
| 14 | 'text' => esc_html__('You were successfully unsubscribed.', 'mailchimp-for-wp'), |
| 15 | ], |
| 16 | 'not_subscribed' => [ |
| 17 | 'type' => 'notice', |
| 18 | 'text' => esc_html__('Given email address is not subscribed.', 'mailchimp-for-wp'), |
| 19 | ], |
| 20 | 'error' => [ |
| 21 | 'type' => 'error', |
| 22 | 'text' => esc_html__('Oops. Something went wrong. Please try again later.', 'mailchimp-for-wp'), |
| 23 | ], |
| 24 | 'invalid_email' => [ |
| 25 | 'type' => 'error', |
| 26 | 'text' => esc_html__('Please provide a valid email address.', 'mailchimp-for-wp'), |
| 27 | ], |
| 28 | 'already_subscribed' => [ |
| 29 | 'type' => 'notice', |
| 30 | 'text' => esc_html__('Given email address is already subscribed, thank you!', 'mailchimp-for-wp'), |
| 31 | ], |
| 32 | 'required_field_missing' => [ |
| 33 | 'type' => 'error', |
| 34 | 'text' => esc_html__('Please fill in the required fields.', 'mailchimp-for-wp'), |
| 35 | ], |
| 36 | 'no_lists_selected' => [ |
| 37 | 'type' => 'error', |
| 38 | 'text' => esc_html__('Please select at least one list.', 'mailchimp-for-wp'), |
| 39 | ], |
| 40 | 'spam' => [ |
| 41 | 'type' => 'error', |
| 42 | 'text' => esc_html__('Your submission was marked as spam.', 'mailchimp-for-wp'), |
| 43 | ], |
| 44 | ]; |
| 45 |