﻿
/**
 * @author MURA
 * @copyright insyma AG
 * @projectDescription insyma JavaScript Library Konfiguration FormValidation Module
 * @version 1.0 
 * 
 */
// Alle Validierungstexte
insymaFormValidation.config.validationTexts = [
    "Veuillez remplir le champ [label]!",			// für normale Validierung
    "Veuillez choisir un des champs [label]!",			// für Radiobuttons
    "Veuillez donner une bonne adresse e-mail!",			// für E-Mail-Feld
    "Le champ [label] exclusivement de décimales!",	        // für Dezimalzahlen
    "Veuillez entrer un numéro correct!",			// für Telefonnummer
    "Veuillez donner une bonne monnaie!",		// für Währung
    "Le champ [label] exclusivement de chiffres positifs!",	        // für positive Ganzzahlen
    "Le champ [label] exclusivement de chiffres!"			// 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";

