From ce287fa2f0ed0c6bc1e206d6dc51819ab45c5513 Mon Sep 17 00:00:00 2001 From: antonio Date: Tue, 10 May 2016 23:00:25 +0200 Subject: [PATCH] feat: added catalan translation --- src/js/locales/bootstrap-datetimepicker.ca.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/js/locales/bootstrap-datetimepicker.ca.js diff --git a/src/js/locales/bootstrap-datetimepicker.ca.js b/src/js/locales/bootstrap-datetimepicker.ca.js new file mode 100644 index 000000000..c232e2995 --- /dev/null +++ b/src/js/locales/bootstrap-datetimepicker.ca.js @@ -0,0 +1,16 @@ +/** + * Catalan translation for bootstrap-datepicker + * J. Garcia + */ +;(function($){ + $.fn.datetimepicker.dates['ca'] = { + days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], + daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], + daysMin: ["Dg", "Dl", "Dt", "Dc", "Dj", "Dv", "Ds", "Dg"], + months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], + monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], + today: "Avui" + }; +}(jQuery)); + +