bootstrap-datepicker-en-CA.js 932 B

12345678910111213141516171819202122
  1. /**
  2. * Canadian English translation for bootstrap-datepicker
  3. * Mike Nacey <mnacey@gmail.com>
  4. * DEPRECATED: This filename doesn't follow the convention, use bootstrap-datepicker.en-CA.js instead
  5. */
  6. ;(function($){
  7. $.fn.datepicker.dates['en-CA'] = {
  8. days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
  9. daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
  10. daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
  11. months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
  12. monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
  13. today: "Today",
  14. monthsTitle: "Months",
  15. clear: "Clear",
  16. weekStart: 0,
  17. format: "yyyy-mm-dd"
  18. };
  19. $.fn.datepicker.deprecated('This filename doesn\'t follow the convention, use bootstrap-datepicker.en-CA.js instead.');
  20. }(jQuery));