admin | b0dd10f | 2006-08-25 17:25:49 +0000 | [diff] [blame^] | 1 | <?php |
| 2 | |
| 3 | $lang['required'] = "The %s field is required."; |
| 4 | $lang['isset'] = "The %s field must have a value."; |
| 5 | $lang['valid_email'] = "The %s field must contain a valid email address."; |
| 6 | $lang['valid_url'] = "The %s field must contain a valid URL."; |
| 7 | $lang['min_length'] = "The %s field must be at least %s characters in length."; |
| 8 | $lang['max_length'] = "The %s field can not exceed %s characters in length."; |
| 9 | $lang['exact_length'] = "The %s field must be exactly %s characters in length."; |
| 10 | $lang['alpha'] = "The %s field may only contain alpha-numeric characters."; |
| 11 | $lang['alpha_dash'] = "The %s field may only contain alpha-numeric characters, underscores, and dashes."; |
| 12 | $lang['numeric'] = "The %s field must contain a number."; |
| 13 | $lang['matches'] = "The %s field does not match the %s field."; |
| 14 | |
| 15 | ?> |