blob: 580ce297572410a7b8cac8de1922567aec4333f4 [file] [log] [blame]
adminb0dd10f2006-08-25 17:25:49 +00001<?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.";
admind7bb13b2006-09-04 07:13:05 +000010$lang['alpha'] = "The %s field may only contain alphabetical characters.";
11$lang['alpha_numeric'] = "The %s field may only contain alpha-numeric characters.";
adminb0dd10f2006-08-25 17:25:49 +000012$lang['alpha_dash'] = "The %s field may only contain alpha-numeric characters, underscores, and dashes.";
13$lang['numeric'] = "The %s field must contain a number.";
14$lang['matches'] = "The %s field does not match the %s field.";
15
16?>