datepicker-ky.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Kyrgyz (UTF-8) initialisation for the jQuery UI date picker plugin. */
  2. /* Written by Sergey Kartashov (ebishkek@yandex.ru). */
  3. ( function( factory ) {
  4. "use strict";
  5. if ( typeof define === "function" && define.amd ) {
  6. // AMD. Register as an anonymous module.
  7. define( [ "../widgets/datepicker" ], factory );
  8. } else {
  9. // Browser globals
  10. factory( jQuery.datepicker );
  11. }
  12. } )( function( datepicker ) {
  13. "use strict";
  14. datepicker.regional.ky = {
  15. closeText: "Жабуу",
  16. prevText: "Мур",
  17. nextText: "Кий",
  18. currentText: "Бүгүн",
  19. monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь",
  20. "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ],
  21. monthNamesShort: [ "Янв", "Фев", "Мар", "Апр", "Май", "Июн",
  22. "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек" ],
  23. dayNames: [ "жекшемби", "дүйшөмбү", "шейшемби", "шаршемби", "бейшемби", "жума", "ишемби" ],
  24. dayNamesShort: [ "жек", "дүй", "шей", "шар", "бей", "жум", "ише" ],
  25. dayNamesMin: [ "Жк", "Дш", "Шш", "Шр", "Бш", "Жм", "Иш" ],
  26. weekHeader: "Жум",
  27. dateFormat: "dd.mm.yy",
  28. firstDay: 1,
  29. isRTL: false,
  30. showMonthAfterYear: false,
  31. yearSuffix: ""
  32. };
  33. datepicker.setDefaults( datepicker.regional.ky );
  34. return datepicker.regional.ky;
  35. } );