var msgValidate = {
		required:      "{fieldname} is a required field",
		numeric:       "{fieldname} must contain only numbers",
		alpha:         "{fieldname} must contain only letters",
		alphanumeric:  "{fieldname} must contain only letters and/or numbers",
		maxlength:     "{fieldname} can not be greater than {max} caracteres",
		minlength:     "{fieldname} can not be less than {min} caracteres",
		max:           "{fieldname} can not be greater than {max}",		
		min:           "{fieldname} can not be less than {min}",	
		date:          "{fieldname} not have a valid date",
		dateCompare:   "{fieldname} must have a date {operator} of {fieldnameCompare}",
		time:          "{fieldname} not have a valid time",
		timeCompare:   "{fieldname} should take one hour {operator} of {fieldnameCompare}",
		valueCompare:  "{fieldname} must have a value {operator} of {fieldnameCompare}",
		length:        "{fieldname} must contain only {length} caracteres",
		notExists:     "{fieldname} not exist",
		email:         "{fieldname} is not a valid email address",
		hour:		   "{fieldname} is not a valid time",		
		phone:         "{fieldname} deve ser um telefone válido",
		creditcard:    "{fieldname} not a number of valid credit card",		
		great:         "greater",
		less:          "less",
		greatOrEqual:  "great or equal",
		lessOrEqual:   "less ou equal",
		equal:         "equal",
		notEqual:      "different"	
};
