

var LocalizationClass = function() {
	
	// SLIDESHOW
	this.slideshowPlay    = "lancer/pauser le diaporama";
	this.slideshowNext    = "image suivante";
	this.slideshowPrev    = "image précédente";
	this.slideshowSpeed1  = "très rapide";
	this.slideshowSpeed2  = "rapide";
	this.slideshowSpeed3  = "normal";
	this.slideshowSpeed4  = "lent";
	this.slideshowSpeed5  = "très lent";
	this.slideshowClose   = "Quitter le mode Zoom";
	
	// PREFERENCES
	this.prefsLabel       = "Préférences";
	this.colorDefaults    = "rétablir les défauts";
	this.colorLight       = "clair";
	this.colorDark        = "foncé";
	this.colorContrast    = "contraste";
	this.colorBrightness  = "luminosité";
	this.color2           = "2e couleur";
	this.textSize         = "Taille Texte";
	this.textFont         = "Police Texte";
	this.titlesFont       = "Police Titres";
	this.titlesVariant    = "Variante Titres";
	this.title1Deco       = "Déco Titre 1";
	this.title2Deco       = "Déco Titre 2";
	this.logo             = "Logo";
	this.serif            = "serif";
	this.smallcaps        = "capitalisés";
	this.italic           = "italique";
	this.plain            = "simple";
	this.tab              = "onglet";
	this.fancy            = "petit bloc";
	this.textSmall        = "petite taille de texte";
	this.textMedium       = "moyenne taille de texte";
	this.textLarge        = "grande taille de texte";
	this.left             = "gauche";
	this.center           = "centre";
	
	// FORM VALIDATION
	this.formInvalidEmail = "format d'adresse e-mail incorrect";
}


