﻿
/**
 * @author MURA
 * @copyright insyma AG
 * @projectDescription insyma JavaScript Library Konfiguration FormValidation Module
 * @version 1.0 
 * 
 */
// Alle Validierungstexte
insymaFormValidation.config.validationTexts = [
    "Please fill out [label]",			// für normale Validierung
    "Please choose a field",			// für Radiobuttons
    "Please enter a correct e-mail address",			// für E-Mail-Feld
    "The field [label] only accepts decimals",	        // für Dezimalzahlen
    "Please enter a correct phone number",			// für Telefonnummer
    "Please choose a correct currency",		// für Währung
    "Please only enter positive numbers in the field [label]",	        // für positive Ganzzahlen
    "Please only enter numbers in the field [label]"			// für positive und negative Ganzzahlen
];

// Querystring, der in der URL vom Redirect steht
insymaFormValidation.config.ThanksUrlVar = "thanks";
// Id des Containers mit dem Dankestext
insymaFormValidation.config.ThanksContainerId = "thanks";


