Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Datepicker: Added Tajikistan localization. Fixes #7034 - Datepicker: …
…Add Tajikistan localization.
- Loading branch information
1 parent
bed6def
commit 0cd297702db890672a2886026200e9762de43e77
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */ | ||
/* Written by Abdurahmon Saidov (saidovab@gmail.com). */ | ||
jQuery(function($){ | ||
$.datepicker.regional['tj'] = { | ||
closeText: 'Идома', | ||
prevText: '<Қафо', | ||
nextText: 'Пеш>', | ||
currentText: 'Имрӯз', | ||
monthNames: ['Январ','Феврал','Март','Апрел','Май','Июн', | ||
'Июл','Август','Сентябр','Октябр','Ноябр','Декабр'], | ||
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', | ||
'Июл','Авг','Сен','Окт','Ноя','Дек'], | ||
dayNames: ['якшанбе','душанбе','сешанбе','чоршанбе','панҷшанбе','ҷумъа','шанбе'], | ||
dayNamesShort: ['якш','душ','сеш','чор','пан','ҷум','шан'], | ||
dayNamesMin: ['Як','Дш','Сш','Чш','Пш','Ҷм','Шн'], | ||
weekHeader: 'Хф', | ||
dateFormat: 'dd.mm.yy', | ||
firstDay: 1, | ||
isRTL: false, | ||
showMonthAfterYear: false, | ||
yearSuffix: ''}; | ||
$.datepicker.setDefaults($.datepicker.regional['tj']); | ||
}); |