/* FR localization for CalendarDateSelect */

Date.weekdays = $w("L Ma Me J V S D");
Date.first_day_of_week = 1;
Date.months = $w("janvier février mars avril mai juin juillet août septembre octobre novembre décembre");

Date.prototype.toFormattedString = function(){
  str = Date.padded2(this.getDate()) + '/' + Date.padded2(this.getMonth() + 1) + '/' + this.getFullYear();
  return str;
}
Date.parseFormattedString = function(string) {
	string = string.sub(/^(\d+)\/(\d+)/, '#{2}/#{1}');
	return new Date(string);
}

_translations = {
  "OK": "OK",
  "Now": "Maintenant",
  "Today": "Aujourd'hui"
}
