[SPIP][PLUGINS] v3.0-->v3.2
[lhc/web/www.git] / www / plugins-dist / jquery_ui / prive / javascript / ui / i18n / datepicker-tr.js
1 /* Turkish initialisation for the jQuery UI date picker plugin. */
2 /* Written by Izzet Emre Erkan (kara@karalamalar.net). */
3 ( function( factory ) {
4 if ( typeof define === "function" && define.amd ) {
5
6 // AMD. Register as an anonymous module.
7 define( [ "../widgets/datepicker" ], factory );
8 } else {
9
10 // Browser globals
11 factory( jQuery.datepicker );
12 }
13 }( function( datepicker ) {
14
15 datepicker.regional.tr = {
16 closeText: "kapat",
17 prevText: "<geri",
18 nextText: "ileri&#x3e",
19 currentText: "bugün",
20 monthNames: [ "Ocak","Şubat","Mart","Nisan","Mayıs","Haziran",
21 "Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık" ],
22 monthNamesShort: [ "Oca","Şub","Mar","Nis","May","Haz",
23 "Tem","Ağu","Eyl","Eki","Kas","Ara" ],
24 dayNames: [ "Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi" ],
25 dayNamesShort: [ "Pz","Pt","Sa","Ça","Pe","Cu","Ct" ],
26 dayNamesMin: [ "Pz","Pt","Sa","Ça","Pe","Cu","Ct" ],
27 weekHeader: "Hf",
28 dateFormat: "dd.mm.yy",
29 firstDay: 1,
30 isRTL: false,
31 showMonthAfterYear: false,
32 yearSuffix: "" };
33 datepicker.setDefaults( datepicker.regional.tr );
34
35 return datepicker.regional.tr;
36
37 } ) );