



/**
 * Object to store system messages via javascript.
 * @namespace Object to store system messages via javascript.
 * @member BTT
 */
BTT.Messages = {
	
	Validation: {
		commonError: "Sorry, we've found {0} error{1}. Please go to the highlighted field{1} to see what went wrong.",
		success: "Successfully completed",
		required: "This info is required",
		password: "Your password must be at least 6 characters long",
		email: "This should be an email",
		verifyEmail: "This should match an email",
		phone: "This should be a phone number",
		postCode: "This should be a valid postal code",
		dateCheck: "This should be a valid date in DD/MM/YYYY format",
		googleAnalyticsId: "This is not a valid Google Analytics ID",
		domainsAvailable: "This is a list of alternate URLs that are available",
		displayNamesAvailable: "This is a list of alternate display names that are available",
		checkDomainName: "This domain name has already been used",
		checkDisplayName: "This display name has already been used",
		min: "This should be greater or equal to 1",
		quantity: "Please enter a valid quantity here",
		media: "Please select a media file",
		accept: "This file type is not supported",
		keyword: "At least one keyword is required",
		maxLength: "This can not exceed 150 characters",
		checkboxSet: "You must select at least one item in order to complete this action",
		selectHasValue: "Please select an option"
	},
	Confirmation: {
		areYouSure: "Are you sure you want to do this?",		
		purgeEmail: "Are you sure you want to do this?",
		adminRights: "Administrative rights will be re-assigned to Tradespace. Are you sure?",
		checkDisplayName: "This display name is already in use",
		checkPasswordStrength: "This password is not strong enough",
		enableProfile: "Are you sure you want to enable this profile?",
		disableProfile: "Are you sure you want to disable this profile?",
		blockUser: "Are you sure you want to block this user from your community?",
		unblockUser: "Are you sure you want this user to contribute to your community again?",
		deleteTopic: "You will permanently delete this topic and all its replies. Do you want to continue?",
		deletePost: "Are you sure you wish to delete this post?",
		deleteMedia: "Are you sure you want to delete this media file?",
		deleteProduct: "Are you sure you want to delete this product?",
		deleteService: "Are you sure you want to do this?\n\nBy deleting a service, you will not be able to access it again. All images and captions will still be in your library to re-use at a later date. \n\nNote: You will also need to go to Book it Now to remove the service there."
	},
	Lightboxes: {
		close: "Close",
		ajaxWrongId: "Sorry, we couldn\'t find what you\'re looking for.",
		ajaxWrongPage: "Sorry, we couldn\'t load that content.",
		accessibleDynamicContent: "Following content has been added dynamically",
		navigatePrevious: "Previous",
		navigateNext: "Next",
		uploadFileHeader: "Your file is being uploaded...",
		uploadFileText: "Videos take longer than images. Depending on the size and type of your video file, there may be a slight delay so don't give up till it's done!",
		uploadFileTip: "NB: Once uploaded (to your library) your video will need to be encoded by Viddler.com (our video platform provider) before it appears on your page.",
		uploadFileStatus: "Uploaded {0}kB of {1}kB",
		uploadFileDetermining: "Uploading...",
		uploadFileComplete: "File uploaded"
	},
	Gallery: {
		next: "Next image"
	},
	Password: {
		strong: "Your password is strong",
		ok: "Your password is ok",
		weak: "Your password is too weak"
	},
	AJAX: {
		communitySearchError: "No communities related to your keywords were found.",
		communitiesSelected: "Selected communities"
	},
	Enhancements: {
		externalLink: "This link opens in a new window."
	}
};

