mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
835 B
14 lines
835 B
/** |
|
* Serbian cyrillic translation for bootstrap-datepicker |
|
* Bojan Milosavlević <milboj@gmail.com> |
|
*/ |
|
;(function($){ |
|
$.fn.datepicker.dates['rs'] = { |
|
days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], |
|
daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], |
|
daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], |
|
months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], |
|
monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], |
|
today: "Данас" |
|
}; |
|
}(jQuery));
|
|
|