var formSigninTxt = {
	es: {
		user: {
			_default: 'Tu nick',
			error1: 'Introduce tu nick',
			error2: 'El nick no tiene el formato correcto, debe tener entre 2 y 25 carácteres.'
		},
		email: {
			_default: 'Tu email',
			error1: 'Introduce tu email',
			error2: 'El email no tiene el formato correcto.'
		},
		pass: {
			_default: '',
			error1: 'Introduce tu password',
			error2: 'Tu contraseña debe contener entre 4 y 25 caracteres. Por favor, prueba con otra.'
		},
		rpass: {
			_default: '',
			error1: 'Repite tu password',
			error2: 'La contraseña repetida no tiene el formato correcto, debe tener entre 4 y 25 caracteres.',
			error3: 'Las contraseñas no coinciden.'
		}
	},
	en: {
		user: {
			_default: 'Your nick',
			error1: 'Enter your nick',
			error2: "The nick doesn't have the correct format, it must be between 2 and 25 characters long"
		},
		email: {
			_default: 'Your e-mail',
			error1: 'Enter your e-mail',
			error2: "The e-mail doesn't have the correct format"
		},
		pass: {
			_default: '',
			error1: 'Enter your password',
			error2: 'Your password must be between 4 and 25 characters long. Please try another.'
		},
		rpass: {
			_default: '',
			error1: 'Repeat your password',
			error2: "The repeat password doesn't have the correct format, it must be between 4 and 25 characters long.",
			error3: "The passwords don't match."
		}
	},
	fr: {
		user: {
			_default: 'Ton pseudo',
			error1: 'Introduis ton pseudo',
			error2: "Le pseudo n'a pas le format correct, il doit avoir entre 2 et 25 caractères"
		},
		email: {
			_default: 'Ton e-mail',
			error1: 'Introduis ton e-mail',
			error2: "L'e-mail n'a pas le format correct."
		},
		pass: {
			_default: '',
			error1: 'Introduis ton mot de passe',
			error2: 'Ton mot de passe doit contenir entre  4 et 25 caractères. Essayes-en un autre.'
		},
		rpass: {
			_default: '',
			error1: 'Introduce tu password',
			error2: "Ton répétées mot de passe n'a pas le format correct, il doit contenir entre 4 et 25 caractères",
			error3: 'Les mot de passe ne coïncident pas.'
		}
	}
};

var formSigninDef = {
	user: {
		maxlength: 25,
		validators: [{
			errorMsg: 'error1',
			regEx	: null
		}, {
			errorMsg: 'error2',
			regEx	: 'login'
		}]
	},
	email: {
		maxlength: 50,
		validators: [{
			errorMsg: 'error1',
			regEx	: null
		}, {
			errorMsg: 'error2',
			regEx	: 'email'
		}]
	},
	pass: {
		maxlength: 25,
		validators: [{
			errorMsg: 'error1',
			regEx	: null
		}, {
			errorMsg: 'error2',
			regEx	: 'password'
		}]
	},
	rpass: {
		maxlength: 25,
		validators: [{
			errorMsg: 'error1',
			regEx	: null
		}, {
			errorMsg: 'error2',
			regEx	: 'password'
		}, {
			errorMsg: 'error3',
			regEx	: 'password',
			equal	: 'pass'
		}]
	}
};
