17 lines
673 B
JavaScript
17 lines
673 B
JavaScript
|
/* http://keith-wood.name/countdown.html
|
|||
|
* Kazakh initialisation for the jQuery countdown extension
|
|||
|
* Written by Veaceslav Grimalschi grimalschi@yandex.ru (2019) */
|
|||
|
(function($) {
|
|||
|
'use strict';
|
|||
|
$.countdown.regionalOptions['kk'] = {
|
|||
|
labels: ['Жыл','Ай','Апта','Күн','Сағат','Минут','Секунд'],
|
|||
|
labels1: ['Жыл','Ай','Апта','Күн','Сағат','Минут','Секунд'],
|
|||
|
compactLabels: ['ж','а','а','к'],
|
|||
|
whichLabels: null,
|
|||
|
digits: ['0','1','2','3','4','5','6','7','8','9'],
|
|||
|
timeSeparator: ':',
|
|||
|
isRTL: false
|
|||
|
};
|
|||
|
$.countdown.setDefaults($.countdown.regionalOptions['kk']);
|
|||
|
})(jQuery);
|