langs/en/form_validate_en.php

Summary

Maintainability
D
1 day
Test Coverage
<?php

return [
    'form_validate_active_url' => 'The %field field must contain a valid working URL.',
    'form_validate_after_date' => 'The %field field must contain date after %param.',
    'form_validate_ajax_exists' => 'The %field field must exist.',
    'form_validate_ajax_is_unique' => 'The %field field must be unique.',
    'form_validate_ajax_is_unique_without' => 'The %field field must be unique.',
    'form_validate_alpha_dash' => 'The %field field may only contain alpha-numeric characters, underscores, and dashes.',
    'form_validate_alpha_numeric_spaces' => 'The %field field may only contain alpha-numeric characters and spaces.',
    'form_validate_alpha_numeric' => 'The %field field may only contain alpha-numeric characters.',
    'form_validate_alpha' => 'The %field field may only contain alphabetical characters.',
    'form_validate_alpha_spaces' => 'The %field field may only contain alphabetical characters and spaces.',
    'form_validate_before_date' => 'The %field field must contain date before %param.',
    'form_validate_between' => 'The %field field length is wrong.',
    'form_validate_captcha' => 'The %field is incorrect.',
    'form_validate_chars' => 'The %field field must contain only limited set of chars.',
    'form_validate_credit_card' => 'The %field field must contain valid credit card.',
    'form_validate_decimal' => 'The %field field must contain a decimal number.',
    'form_validate_depends_on' => 'The %field field depends on %param.',
    'form_validate_differs' => 'The %field field must differ from the %param field.',
    'form_validate_email' => 'The %field field must contain a valid email address.',
    'form_validate_exact_length' => 'The %field field must be exactly %param characters in length.',
    'form_validate_exists' => 'The %field field must exist.',
    'form_validate_greater_than_equal_to' => 'The %field field must contain a number greater than or equal to %param.',
    'form_validate_greater_than' => 'The %field field must contain a number greater than %param.',
    'form_validate_hash_not_empty' => 'The %field field is required.',
    'form_validate_host' => 'The %field field must contain a valid hostname.',
    'form_validate_image' => 'The %field field must contain valid image.',
    'form_validate_integer' => 'The %field field must contain an integer.',
    'form_validate_is_natural_no_zero' => 'The %field field must only contain digits and must be greater than zero.',
    'form_validate_is_natural' => 'The %field field must only contain digits.',
    'form_validate_is_numeric' => 'The %field field must contain only numeric characters.',
    'form_validate_is_unique' => 'The %field field must be unique.',
    'form_validate_is_unique_without' => 'The %field field must be unique.',
    'form_validate_isset' => 'The %field field must have a value.',
    'form_validate_is_unique' => 'The %field field must contain a unique value.',
    'form_validate_length' => 'The %field field length is wrong.',
    'form_validate_less_than_equal_to' => 'The %field field must contain a number less than or equal to %param.',
    'form_validate_less_than' => 'The %field field must contain a number less than %param.',
    'form_validate_matches' => 'The %field field does not match the %param field.',
    'form_validate_max_length' => 'The %field field cannot exceed %param characters in length.',
    'form_validate_md5_not_empty' => 'The %field field is required.',
    'form_validate_mime' => 'The %field field content mime-type not allowed.',
    'form_validate_min_length' => 'The %field field must be at least %param characters in length.',
    'form_validate_numeric' => 'The %field field must contain only numbers.',
    'form_validate_password_update' => 'The %field field must contain a valid password.',
    'form_validate_phone_cleanup' => 'The %field field must contain a valid phone number.',
    'form_validate_prep_url' => 'The %field field must contain a valid URL.',
    'form_validate_regex' => 'The %field field not matched regex.',
    'form_validate_regex_match' => 'The %field field not matched regex.',
    'form_validate_required_any' => 'The %field field is required.',
    'form_validate_required_if' => 'The %field field is required.',
    'form_validate_required' => 'The %field field is required.',
    'form_validate_standard_text' => 'The %field field may only contain standard text.',
    'form_validate_unicode_alpha_dash' => 'The %field field may only contain alpha-numeric characters, underscores, and dashes.',
    'form_validate_unicode_alpha' => 'The %field field may only contain alphabetical characters.',
    'form_validate_unicode_alpha_numeric' => 'The %field field may only contain alpha-numeric characters.',
    'form_validate_unicode_alpha_numeric_spaces' => 'The %field field may only contain alpha-numeric characters and spaces.',
    'form_validate_unicode_alpha_spaces' => 'The %field field may only contain alphabetical characters and spaces.',
    'form_validate_unique' => 'The %field field must be unique.',
    'form_validate_url' => 'The %field field must contain a valid URL.',
    'form_validate_valid_base64' => 'The %field field must contain a valid base64 encoded string.',
    'form_validate_valid_date_format' => 'The %field field must contain a valid date by format.',
    'form_validate_valid_date' => 'The %field field must contain a valid date.',
    'form_validate_valid_emails' => 'The %field field must contain all valid email addresses.',
    'form_validate_valid_email' => 'The %field field must contain a valid email address.',
    'form_validate_valid_hostname' => 'The %field field must contain a valid hostname.',
    'form_validate_valid_image' => 'The %field field must contain a valid image.',
    'form_validate_valid_ip' => 'The %field field must contain a valid IP address.',
    'form_validate_valid_url' => 'The %field field must contain a valid URL.',
    'form_validate_valid_phone' => 'The %field field must contain a valid phone number.',
    'form_validate_xss_clean' => 'The %field field not passed XSS filter.',
];