/**
*	@author	Esmit Perez C - esmit@ps.co.cr
*	
*/

var thisLang = "en";

var Language = new Object();
Language[thisLang] = new Array();
_s = Language[thisLang];

/*** general ***/
_s["numeric"] = "numeric";

/*** qForm.js ***/
_s["qform_Error"] = "The following error(s) occurred:\n";
_s["qform_FieldRequired"] = "{1}: Field is required";
_s["qform_FieldDoesNotExist"] = "The form field {1} does not exist."
_s["qform_FieldIsDisabled"] = "This field is disabled.";
_s["qform_SureToContinue"] = "Are you sure you want to continue?";
_s["qform_NoForm"] = "No form specified.";
_s["qform_ObjNotExists"] = "The form \"{1}\" does not exist. This error \nwill occur if the Form object was initialized before the form \nhas been created or if it simply doesn't exist. Please make \nsure to initialize the Form object after page loads to avoid \npotential problems."
_s["qform_AddMethod"] = "To create a new method, you must specify \nboth a name and function to run: \n  obj.addMethod(\"checkTime\", _isTime);"
_s["qform_AddValidator"] = "To create a new validation object, you must specify \nboth a name and function to run: \n  obj.addValidator(\"isTime\", __isTime);"
_s["qform_ValidatorAlreadyLoaded"] = "The {1} validator has already been loaded."
_s["qform_AddEvent"] = "Invalid arguments. Please use the format \naddEvent(event, command, [append])."
_s["qform_FunctionToString"] = "Invalid arguments. Please use the format \n_functionToString(function, [command], [append])."

/*** validation.js ***/
_s["validation_missing_description"] = "You must specify a(n) {1}.";
_s["validation_isEmail_no_spaces"] ="Invalid {1} address. An e-mail address should not contain a space.";
_s["validation_isEmail_no_at_sign"] ="Invalid {1} address. An e-mail address must contain the @ symbol.";
_s["validation_isEmail_at_sign_not_first"] ="Invalid {1} address. The @ symbol can not be the first character of an e-mail address.";
_s["validation_isEmail_no_period"] ="Invalid {1} address. An e-mail address must contain at least one period after the @ symbol.";
_s["validation_isEmail_at_sign_not_last"] ="Invalid {1} address. The @ symbol can not be the last character of an e-mail address.";
_s["validation_isEmail_period_not_last"] ="Invalid {1} address. A period can not be the last character of an e-mail address.";

_s["validation_isPassword_fields_do_not_match"] = "The {1} and {2} values do not match."
_s["validation_isPassword_range_check"] = "The {1} field must be between {2} and {3} characters long."
_s["validation_isDifferent"] = "The {1} and {2} must be different."
_s["validation_isRange"] = "The {1} field does not contain a\nvalue between {2} and {3}."
_s["validation_isNumeric"] = "The value for {1} is not a numeric value. This field requires a numeric value.";
_s["validation_isAlpha"] = "The value for {1} must contain only alpha characters.";
_s["validation_isAlphaNumeric"] = "The value for {1} must contain only alpha-numeric characters.";

_s["validation_isDate_invalid_date"] = "An invalid date was provided for {1} field.";
_s["validation_isDate_invalid_date_mask"] = "An invalid date mask was provided for {1} field.";

_s["validation_isDate_invalid_year"] = "An invalid year was provided for the {1} field. The year \n   should be a {2} digit number."
_s["validation_isDate_invalid_month"] = "An invalid month was provided for {1} field."
_s["validation_isDate_invalid_day"] = "An invalid day was provided for the {1} field."
_s["validation_isLength"] = "The {1} field must include {2} {3} characters."
_s["validation_isLengthGT"] = "The {1} field must be greater than {2} characters."
_s["validation_isLengthlT"] = "The {1} field must be less than {2} characters."

/** field.js **/
_s["field_createDependencyTo"] = "The {1} field does not exist. The dependency \nto {2} can not be created.";
_s["field_select_box_only"]= "This method is only available to select boxes.";

