forked from jquery/jquery-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 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,19 @@ | ||
/* Serbian i18n for the jQuery UI date picker plugin. */ | ||
/* Written by Dejan Dimić. */ | ||
jQuery(function($){ | ||
$.datepicker.regional['sr-SR'] = { | ||
closeText: 'Zatvori', | ||
prevText: '<', | ||
nextText: '>', | ||
currentText: 'Danas', | ||
monthNames: ['Januar','Februar','Mart','April','Maj','Jun', | ||
'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], | ||
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', | ||
'Jul','Avg','Sep','Okt','Nov','Dec'], | ||
dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], | ||
dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], | ||
dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], | ||
dateFormat: 'dd/mm/yy', firstDay: 1, | ||
isRTL: false}; | ||
$.datepicker.setDefaults($.datepicker.regional['sr-SR']); | ||
}); |
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,19 @@ | ||
/* Serbian i18n for the jQuery UI date picker plugin. */ | ||
/* Written by Dejan Dimić. */ | ||
jQuery(function($){ | ||
$.datepicker.regional['sr'] = { | ||
closeText: 'Затвори', | ||
prevText: '<', | ||
nextText: '>', | ||
currentText: 'Данас', | ||
monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', | ||
'Јул','Август','Септембар','Октобар','Новембар','Децембар'], | ||
monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', | ||
'Јул','Авг','Сеп','Окт','Нов','Дец'], | ||
dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], | ||
dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], | ||
dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], | ||
dateFormat: 'dd/mm/yy', firstDay: 1, | ||
isRTL: false}; | ||
$.datepicker.setDefaults($.datepicker.regional['sr']); | ||
}); |