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.
20 lines
1.1 KiB
20 lines
1.1 KiB
/**
|
|
* Serbian cyrillic translation for bootstrap-datepicker
|
|
* Bojan Milosavlević <milboj@gmail.com>
|
|
*
|
|
* DEPRECATED: This language code 'rs' is deprecated (invalid serbian language code) and will be removed in 2.0.
|
|
*/
|
|
;(function($){
|
|
$.fn.datepicker.dates['rs'] = {
|
|
days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота"],
|
|
daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб"],
|
|
daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су"],
|
|
months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"],
|
|
monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"],
|
|
today: "Данас",
|
|
weekStart: 1,
|
|
format: "dd.mm.yyyy"
|
|
};
|
|
|
|
$.fn.datepicker.deprecated('This language code "rs" is deprecated (invalid serbian language code) and will be removed in 2.0. For Serbian support use "sr" instead.');
|
|
}(jQuery));
|
|
|