// ONLY translate the stuff following the ":" BUT NOT text enclosed in < >
// e.g. 	'month_check2': 'Month <month> does not have 31 days!',
// becomes 'month_check2': 'Translated Text <month> Translated Text'
// Note: script only uses month names for error messages on months not having 31 months (which is why all 12 aren't listed)
var dateHelperArrayInfo = {
	'month_check1' 					: 'Month must be between 1 and 12',
	'month_check2'					: '<month> does not have 31 days!',
	'month_check3'					: 'February <year> does not have <day> days ',
	'day_check'							: 'Day must be between 1 and 31',
	'date_ok'								: 'OK!',
	'month_apr'             : 'April',
	'month_jun'             : 'June',
	'month_sept'            : 'September',
	'month_nov'             : 'November'
};

var userRegistrationArrayInfo = {
  'beta_key'              : 'Enter your beta registration key',
  'screen_name' 					: 'Must be between 4 and 15 alphanumeric characters',
  'email' 								: 'Account activation code will be sent to this address', 
  'email_confirmation' 		: 'Please re-type the email address entered above',
  'password' 							: 'Must be between 4 and 40 characters long',
  'password_confirmation' : 'Please re-type your password',        
  'birthdate' 						: 'We have to ask... for legal reasons',
	'password_too_short'		: 'Password is too short! (must be 4 or more characters)',
	'password_too_long'			: 'Password is too long! (must be less than 40 characters)',
	'password_no_match'			: 'Passwords do not match!',
	'email_no_match'				: 'Emails do not match!',
	'timezone'              : 'Display settings for date and time'
};
