datepicker.tr-TR.js 812 B

1234567891011121314151617
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
  3. typeof define === 'function' && define.amd ? define(['jquery'], factory) :
  4. (factory(global.jQuery));
  5. }(this, (function ($) {
  6. 'use strict';
  7. $.fn.datepicker.languages['tr-TR'] = {
  8. format: 'dd.mm.yyyy',
  9. days: ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],
  10. daysShort: ['Paz', 'Pts', 'Sal', 'Çrş', 'Prş', 'Cum', 'Cts'],
  11. daysMin: ['P', 'P', 'S', 'Ç', 'P', 'C', 'C'],
  12. weekStart: 1,
  13. months: ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'],
  14. monthsShort: ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara']
  15. };
  16. })));