Source for file de.inc.php
Documentation is available at de.inc.php
* The regular expression to validate the input date.
"^\\d{1,2}\\.{1,1}\\d{1,2}\\.{1,1}\\d{4,4}$"
* The the separator for the date digits.
define( "JS_DATE_DIGIT_SEPARATOR", "." );
* The error message that appears if the user put in an incorrect date.
"JS_ERR_INVALID_DATE_MSG",
"Bitte geben Sie ein g%FCltiges Geburtsdatum,\\t\\n"
. "in der Form TT.MM.JJJJ ein."
* The error message that appears if the user put in a month greater than 31.
"JS_ERR_DAY_GREATER_THAN_31_MSG",
"Ein Tag im Datum kann nicht gr%F6%DFer als 31 sein.\\t\\n"
. "Daher findet eine Korrektur auf 31 statt."
* The error message that appears if the user put in a month equal to zero.
"JS_ERR_MONTH_IS_ZERO_MSG",
"Ein Monat im Datum kann nicht gleich Null sein.\\t\\n"
. "Daher findet eine Korrektur auf Eins statt."
* The error message that appears if the user put in a month greater than
"JS_EER_MONTH_GREATER_THAN_TWELVE",
"Ein Monat im Datum kann nicht gr%F6%DFer als 12 sein.\\t\\n"
. "Daher findet eine Korrektur auf 12 statt."
* The error message that appears if the user put in a day greater than 29 on
* february of a leap year.
* Put "' + year + '" (whithout double quoting) to the string, that the script
* can concatenate the input year to the error message.
"JS_ERR_DAY_GREATER_THAN_29_IN_FEBUARY_OF_A_LEAP_YEAR",
"Der Monat Februar hat(te) im Jahre ' + year + ' maximal 29 Tage,\\n"
. "daher wird der Tag-Wert auf 29 zur%FCckgestellt.\\t\\t"
* The error message that appears if the user put in a day equal to zero.
"JS_ERR_DAY_IS_ZERO_MSG",
"Ein Tag im Datum kann nicht gleich Null sein.\\t\\n"
. "Daher findet eine Korrektur auf Eins statt."
* The error message that appears if the user put in a day greater than 28 on
* february of a non leap year.
* Put "' + year + '" (whithout double quoting) to the string, that the script
* can concatenate the input year to the error message.
"JS_ERR_DAY_GREATER_THAN_28_IN_FEBUARY_OF_A_NON_LEAP_YEAR",
"Der Monat Febuar hat(te) im Jahre ' + year + ' maximal 28 Tage,\\n"
. "daher wird der Tag-Wert auf 28 zur%FCckgestellt.\\t\\t"
* The error message that appears if the user put in a day greater than 30 on
* a month that only has 30 days.
* Put "' + errMonth + '" (whithout double quoting) to the string, that the
* script can concatenate the input month to the error message.
"JS_ERR_DAY_GREATER_THAN_30_MSG",
"Der Monat ' + errMonth + ' hat maximal 30 Tage, daher wird\\n"
. "der Tag-Wert auf 30 zur%FCckgestellt.\\t\\t"
|