/*
* Aston Martin Localised CMS copy file
* @author Martin Spain at R/GA 2011
*
* This file holds strings that are used within the JavaScript files, and will need to be localised by the CMS.
* At the moment this is a static JS file, but it is anticipated that this will be dynamically generated in 
* future phases of the project.
*/

/*
* Global namespace
*/
var aston = aston || {};

/*  @namespace lang 
* Hold translatable content-managed copy for use within JS files
*/
aston.lang = {
	videoplayer: {
		playAnchorText: "Play",
		closeAnchorText: "Close",
		twitterAnchorText: "Twitter",
		twitterTitleText: "Post to Twitter",
		facebookAnchorText: "Facebook",
		facebookTitleText: "Post to Facebook",
		linkAnchorText: "Link",
		embedAnchorText: "Embed",
		galleryAnchorText: "Gallery",
		fullscreenOffAnchorText: "Fullscreen",
		fullscreenOnAnchorText: "Fullscreen",
		fullscreenOffTitleText: "Play video fullscreen",
		fullscreenOnTitleText: "Play video normal size",
		sharePopupCloseText: "Close",
		soundsTitleAnchorText: "Engine Sounds"
	},
	carousel: {
		prevAnchorText: "Prev",
		nextAnchorText: "Next",
		downloadAnchorText: "Download image"
	},
	forms: {
		errorIntroText: "Some errors were found:"
	}
};

