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.
18 lines
711 B
18 lines
711 B
/**
|
|
* Catalan translation for bootstrap-datepicker
|
|
* J. Garcia <jogaco.en@gmail.com>
|
|
*/
|
|
;(function($){
|
|
$.fn.datepicker.dates['ca'] = {
|
|
days: ["diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte"],
|
|
daysShort: ["dg.", "dl.", "dt.", "dc.", "dj.", "dv.", "ds."],
|
|
daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds"],
|
|
months: ["gener", "febrer", "març", "abril", "maig", "juny", "juliol", "agost", "setembre", "octubre", "novembre", "desembre"],
|
|
monthsShort: ["gen.", "febr.", "març", "abr.", "maig", "juny", "jul.", "ag.", "set.", "oct.", "nov.", "des."],
|
|
today: "Avui",
|
|
monthsTitle: "Mesos",
|
|
clear: "Esborra",
|
|
weekStart: 1,
|
|
format: "dd/mm/yyyy"
|
|
};
|
|
}(jQuery));
|
|
|