









var CopyVideoNoExiste = "You haven't submitted any video to encourage Rafa.";
var CopyVideoMalFormato = 'The format of the file that you have submitted is incorrect.';


var YouTubeUploaderCopies = {
	es: {
		video_name			: {
			error1 : 'You have not told us your name.',
			error2 : 'You have not told us your name.'
		},
		video_city			: {
			error1 : 'You have not told us where you are cheering Rafa on from.',
			error2 : 'You have not told us where you are cheering Rafa on from.'
		},
		acceptLegal			: {
			error1 : 'It is necessary that you accept the terms of use.'
		}/*,
		file	: {
			_default: '',
			error1	: 'pon video',
			error2	: 'extension mal.'
		}*/
	}
};

var YouTubeUploaderFormStructure = {
	video_name : {
		maxlength : 25,
		validators : [
			{ errorMsg : 'error1', regEx : null },
			{ errorMsg : 'error2', regEx : 'name' }
		]
	},
	video_city : {
		maxlength : 25,
		validators : [
			{ errorMsg : 'error1', regEx : null },
			{ errorMsg : 'error2', regEx : 'name' }
		]
	},
	acceptLegal	: {
		validators : [
			{ errorMsg : 'error1', regEx : null }
		]
	}/*,
	file	:
	{
		validators	  :
		[
			{ errorMsg : 'error1', regEx : null },
			{ errorMsg : 'error2', regEx : 'wmv,avi,mov,mpg' }
		]
	}*/
	
};

