/* localizes the calendar to French */

// Config Vars
var
cult = "fr-FR",
LocalizedDateDelimiter = ".",
LocalizedStartWeekday = "1",
LocalizedMDYDayPosition = "1",
LocalizedMDYMonthPosition = "2",
LocalizedMDYYearPosition = "3",
LocalizedMDDayPosition = "1",
LocalizedMDMonthPosition = "2",
LocalizedMonths = new Array("Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juilliet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"),
LocalizedShortMonths = new Array("Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jui", "Aoû", "Sep", "Oct", "Nov", "Déc"),
LocalizedShortWeekdays = new Array(
"<img src='/images/lowfarecalendar/"+cult+"/weekday_sunday.jpg' alt='Dimanche' />",
"<img src='/images/lowfarecalendar/"+cult+"/weekday_monday.jpg' alt='Lundi' />",
"<img src='/images/lowfarecalendar/"+cult+"/weekday_tuesday.jpg' alt='Mardi' />",
"<img src='/images/lowfarecalendar/"+cult+"/weekday_wednesday.jpg' alt='Mercredi' />",
"<img src='/images/lowfarecalendar/"+cult+"/weekday_thursday.jpg' alt='Jeudi' />",
"<img src='/images/lowfarecalendar/"+cult+"/weekday_friday.jpg' alt='Vendredi' />",
"<img src='/images/lowfarecalendar/"+cult+"/weekday_saturday.jpg' alt='Samedi' />"),
LocalizedShortWeekdaysCMS = new Array(
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_sunday.jpg' alt='Dimanche' />",
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_monday.jpg' alt='Lundi' />",
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_tuesday.jpg' alt='Mardi' />",
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_wednesday.jpg' alt='Mercredi' />",
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_thursday.jpg' alt='Jeudi' />",
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_friday.jpg' alt='Vendredi' />",
"<img src='http://192.168.43.100/images/lowfarecalendar/"+cult+"/weekday_saturday.jpg' alt='Samedi' />"),
Localized1ChatWeekdays = new Array("D", "L", "M", "M", "J", "V", "S"),
LocalizedMediumWeekdays = new Array("Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"),
LocalizedLongWeekdays = new Array("Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi");

function localizeCalendar(calendarObject){
    calendarObject.cfg.setProperty("DATE_FIELD_DELIMITER", LocalizedDateDelimiter);
    calendarObject.cfg.setProperty("START_WEEKDAY", LocalizedStartWeekday);
    calendarObject.cfg.setProperty("MDY_DAY_POSITION", LocalizedMDYDayPosition);
    calendarObject.cfg.setProperty("MDY_MONTH_POSITION", LocalizedMDYMonthPosition);
    calendarObject.cfg.setProperty("MDY_YEAR_POSITION", LocalizedMDYYearPosition);
    calendarObject.cfg.setProperty("MD_DAY_POSITION", LocalizedMDDayPosition);
    calendarObject.cfg.setProperty("MD_MONTH_POSITION", LocalizedMDMonthPosition);
    calendarObject.cfg.setProperty("HIDE_BLANK_WEEKS",false);
    calendarObject.cfg.setProperty("WEEKDAYS_SHORT", LocalizedShortWeekdays);
    /*if(IsCMSEditMode){
        calendarObject.cfg.setProperty("WEEKDAYS_SHORT", LocalizedShortWeekdaysCMS);
    }*/
    calendarObject.cfg.setProperty("MONTHS_SHORT", LocalizedShortMonths );
    calendarObject.cfg.setProperty("MONTHS_LONG", LocalizedMonths );
    calendarObject.cfg.setProperty("WEEKDAYS_1CHAR", Localized1ChatWeekdays);
    calendarObject.cfg.setProperty("WEEKDAYS_MEDIUM", LocalizedMediumWeekdays);
    calendarObject.cfg.setProperty("WEEKDAYS_LONG", LocalizedLongWeekdays);
    return calendarObject;
}

function TranslateCalendar(CalendarObject){
    CalendarObject.cfg.setProperty("START_WEEKDAY", LocalizedStartWeekday);
    CalendarObject.cfg.setProperty("MDY_DAY_POSITION", LocalizedMDYDayPosition);
    CalendarObject.cfg.setProperty("MDY_MONTH_POSITION", LocalizedMDYMonthPosition);
    CalendarObject.cfg.setProperty("MDY_YEAR_POSITION", LocalizedMDYYearPosition);
    CalendarObject.cfg.setProperty("MD_DAY_POSITION", LocalizedMDDayPosition);
    CalendarObject.cfg.setProperty("MD_MONTH_POSITION", LocalizedMDMonthPosition);
    CalendarObject.cfg.setProperty("HIDE_BLANK_WEEKS",false);
    CalendarObject.cfg.setProperty("WEEKDAYS_SHORT", LocalizedShortWeekdays);
    /*if(IsCMSEditMode){
        CalendarObject.cfg.setProperty("WEEKDAYS_SHORT", LocalizedShortWeekdaysCMS)
    }*/
    CalendarObject.cfg.setProperty("MONTHS_SHORT", LocalizedShortMonths);
    CalendarObject.cfg.setProperty("MONTHS_LONG", LocalizedMonths);
    CalendarObject.cfg.setProperty("WEEKDAYS_1CHAR", Localized1ChatWeekdays);
    CalendarObject.cfg.setProperty("WEEKDAYS_MEDIUM", LocalizedMediumWeekdays);
    CalendarObject.cfg.setProperty("WEEKDAYS_LONG", LocalizedLongWeekdays);
    return CalendarObject;
}
