automation
2 years ago
deactivationPoll
2 years ago
emails
3 years ago
form
8 months ago
newsletter
9 months ago
segments
1 year ago
subscribers
11 months ago
subscription
11 months ago
upgrade
1 year ago
woocommerce
1 year ago
analytics.html
2 years ago
automation.html
2 years ago
blank.html
2 years ago
experimental-features.html
4 years ago
forms.html
1 year ago
help.html
1 year ago
homepage.html
2 years ago
index.php
3 years ago
landingpage.html
2 years ago
layout.html
9 months ago
logs.html
1 year ago
mss_pitch_translations.html
3 years ago
newsletters.html
1 year ago
parsley-translations.html
2 years ago
premium_key_validation_strings.html
3 years ago
settings.html
2 years ago
settings_translations.html
9 months ago
upgrade_tiers.html
1 year ago
welcome_wizard.html
1 year ago
woo_system_info.html
3 years ago
woocommerce_setup.html
1 year ago
parsley-translations.html
28 lines
| 1 | |
| 2 | Parsley.addMessages('mailpoet', { |
| 3 | defaultMessage: '<%= __("This value seems to be invalid.") %>', |
| 4 | type: { |
| 5 | email: '<%= __("This value should be a valid email.") %>', |
| 6 | url: '<%= __("This value should be a valid url.") %>', |
| 7 | number: '<%= __("This value should be a valid number.") %>', |
| 8 | integer: '<%= __("This value should be a valid integer.") %>', |
| 9 | digits: '<%= __("This value should be digits.") %>', |
| 10 | alphanum: '<%= __("This value should be alphanumeric.") %>' |
| 11 | }, |
| 12 | notblank: '<%= __("This value should not be blank.") %>', |
| 13 | required: '<%= __("This value is required.") %>', |
| 14 | pattern: '<%= __("This value seems to be invalid.") %>', |
| 15 | min: '<%= __("This value should be greater than or equal to %s.") %>', |
| 16 | max: '<%= __("This value should be lower than or equal to %s.") %>', |
| 17 | range: '<%= __("This value should be between %s and %s.") %>', |
| 18 | minlength: '<%= __("This value is too short. It should have %s characters or more.") %>', |
| 19 | maxlength: '<%= __("This value is too long. It should have %s characters or fewer.") %>', |
| 20 | length: '<%= __("This value length is invalid. It should be between %s and %s characters long.") %>', |
| 21 | mincheck: '<%= __("You must select at least %s choices.") %>', |
| 22 | maxcheck: '<%= __("You must select %s choices or fewer.") %>', |
| 23 | check: '<%= __("You must select between %s and %s choices.") %>', |
| 24 | equalto: '<%= __("This value should be the same.") %>' |
| 25 | }); |
| 26 | |
| 27 | Parsley.setLocale('mailpoet'); |
| 28 |