﻿function localize(cali)
{
	cali.cfg.setProperty("DATE_FIELD_DELIMITER", "/");
	cali.cfg.setProperty("MDY_DAY_POSITION", 1);
	cali.cfg.setProperty("MDY_MONTH_POSITION", 2);
	cali.cfg.setProperty("MDY_YEAR_POSITION", 3);
	cali.cfg.setProperty("MD_DAY_POSITION", 1);
	cali.cfg.setProperty("MD_MONTH_POSITION", 2);
	cali.cfg.setProperty("MONTHS_SHORT",   ["Jan", "Fev", "Mar", "Avr", "Mai", "Jui", "Jui", "Aou", "Sep", "Oct", "Nov", "Dec"]);
	cali.cfg.setProperty("MONTHS_LONG",    ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Decembre"]);
	cali.cfg.setProperty("WEEKDAYS_1CHAR", ["D", "L", "M", "M", "J", "V", "S"]);
	cali.cfg.setProperty("WEEKDAYS_SHORT", ["Di", "Lu", "Ma", "Me", "Je", "Ve", "Sa"]);
	cali.cfg.setProperty("WEEKDAYS_MEDIUM",["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"]);
	cali.cfg.setProperty("WEEKDAYS_LONG",  ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"]);	
}