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