xref: /dokuwiki/inc/lang/kk/jquery.ui.datepicker.js (revision 3e2fa388693f117b05e78c833043887bdae5578b)
1/* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */
2/* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */
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
15datepicker.regional.kk = {
16	closeText: "Жабу",
17	prevText: "<Алдыңғы",
18	nextText: "Келесі>",
19	currentText: "Бүгін",
20	monthNames: [ "Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым",
21	"Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан" ],
22	monthNamesShort: [ "Қаң","Ақп","Нау","Сәу","Мам","Мау",
23	"Шіл","Там","Қыр","Қаз","Қар","Жел" ],
24	dayNames: [ "Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі" ],
25	dayNamesShort: [ "жкс","дсн","ссн","срс","бсн","жма","снб" ],
26	dayNamesMin: [ "Жк","Дс","Сс","Ср","Бс","Жм","Сн" ],
27	weekHeader: "Не",
28	dateFormat: "dd.mm.yy",
29	firstDay: 1,
30	isRTL: false,
31	showMonthAfterYear: false,
32	yearSuffix: "" };
33datepicker.setDefaults( datepicker.regional.kk );
34
35return datepicker.regional.kk;
36
37} ) );
38