.
if (!defined('EG')) die('Direct access not allowed!');
class Lang_En_ValCondStrings {
	
	//get the HTMl of the hidden alert notices
	public function getHiddenAlertElement($element)
	{
		$html = "";
		$t = explode(",",$element);
		
		foreach ($t as $el)
		{
			$html .= "
$el
";
		}
		
		return $html;
	}
	
	//if the element is not defined
	public function getNotDefinedResultString($element)
	{
		return "Please fill the field ". getFieldLabel($element) .".
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the elements are not equal
	public function getNotEqualResultString($element)
	{
		return "Please check that the fields ".getFieldLabel($element)." are equal
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element is not alphabetic
	public function getNotAlphabeticResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." is alphabetic
\n".$this->getHiddenAlertElement($element);
	}
	//if the element is not alphanumeric
	public function getNotAlphanumericResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." has to be alphanumeric
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element is not a decimal digit
	public function getNotDecimalDigitResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." is a decimal digit
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element hasn't the mail format
	public function getNotMailFormatResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." is an e-mail address
\n".$this->getHiddenAlertElement($element);
	}
	//if the element is not numeric
	public function getNotNumericResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." is numeric
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element is not an integer
	public function getNotIntegerFormatResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." is an integer number
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element is not a real date
	public function getNotDateResultString($element)
	{
		return "Please check that the field ".getFieldLabel($element)." is a real date
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element (string) length exceeds the value of characters (defined by $maxLength)
	public function getLengthExceedsResultString($element,$maxLength)
	{
		return "Please check that the field ".getFieldLabel($element)." does not exceed the value of $maxLength characters
\n".$this->getHiddenAlertElement($element);
	}
	//if the element is one of the strings indicated by $stringList (a comma-separated list of strings)
	public function getIsForbiddenStringResultString($element,$stringList)
	{
		return "Please check that the field ".getFieldLabel($element)." is not one of the following strings: $stringList
\n".$this->getHiddenAlertElement($element);
	}
	//if the element is not one of the strings indicated by $stringList (a comma-separated list of strings)
	public function getIsNotStringResultString($element,$stringList)
	{
		return "Please check that the field ".getFieldLabel($element)." is one of the following strings: $stringList
\n".$this->getHiddenAlertElement($element);
	}
	//if the element does not match the reg expr indicated by $regExp
	public function getDoesntMatchResultString($element,$regExp)
	{
		return "Please check that the field ".getFieldLabel($element)." matchs the following regular expression: $regExp
\n".$this->getHiddenAlertElement($element);
	}
	
	//if the element is not decimal
	public function getNotDecimalResultString($element, $format)
	{
		$t = explode(",",$format);
		$M = (int)$t[0];
		$D = (int)$t[1];
		$I = $M - $D;
		return "Please check that the field ".getFieldLabel($element)." is a decimal number (maximum number of integer digits:$I, maximum number of decimal digits: $D)
\n".$this->getHiddenAlertElement($element);
	}
	
}