2008-06-04 02:34:33 +00:00
|
|
|
|
/* Turkish initialisation for the jQuery UI date picker plugin. */
|
|
|
|
|
/* Written by Izzet Emre Erkan (kara@karalamalar.net). */
|
2015-08-24 13:00:11 +00:00
|
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
|
"use strict";
|
|
|
|
|
|
2013-07-17 15:10:30 +00:00
|
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
2015-08-24 13:00:11 +00:00
|
|
|
|
define( [ "../widgets/datepicker" ], factory );
|
2013-07-17 15:10:30 +00:00
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
|
factory( jQuery.datepicker );
|
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
|
} )( function( datepicker ) {
|
|
|
|
|
"use strict";
|
2013-07-17 15:10:30 +00:00
|
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
|
datepicker.regional.tr = {
|
|
|
|
|
closeText: "kapat",
|
2022-02-11 15:33:27 +00:00
|
|
|
|
prevText: "geri",
|
|
|
|
|
nextText: "ileri",
|
2015-08-24 13:00:11 +00:00
|
|
|
|
currentText: "bugün",
|
2021-06-06 22:58:12 +00:00
|
|
|
|
monthNames: [ "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran",
|
|
|
|
|
"Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" ],
|
|
|
|
|
monthNamesShort: [ "Oca", "Şub", "Mar", "Nis", "May", "Haz",
|
|
|
|
|
"Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara" ],
|
|
|
|
|
dayNames: [ "Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi" ],
|
|
|
|
|
dayNamesShort: [ "Pz", "Pt", "Sa", "Ça", "Pe", "Cu", "Ct" ],
|
|
|
|
|
dayNamesMin: [ "Pz", "Pt", "Sa", "Ça", "Pe", "Cu", "Ct" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
|
weekHeader: "Hf",
|
|
|
|
|
dateFormat: "dd.mm.yy",
|
2014-02-19 11:55:50 +00:00
|
|
|
|
firstDay: 1,
|
|
|
|
|
isRTL: false,
|
|
|
|
|
showMonthAfterYear: false,
|
2015-08-24 13:00:11 +00:00
|
|
|
|
yearSuffix: "" };
|
|
|
|
|
datepicker.setDefaults( datepicker.regional.tr );
|
2014-02-19 11:55:50 +00:00
|
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
|
return datepicker.regional.tr;
|
2013-07-17 15:10:30 +00:00
|
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
|
} );
|