Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
20 lines
720 B
JavaScript
20 lines
720 B
JavaScript
/**
|
|
* Japanese translation for bootstrap-year-calendar
|
|
* Paul DAVID-SIVELLE
|
|
* Based on
|
|
* Japanese translation for bootstrap-datepicker
|
|
* Norio Suzuki <https://github.com/suzuki/>
|
|
*/
|
|
|
|
;(function($){
|
|
$.fn.calendar.dates['ja'] = {
|
|
days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜"],
|
|
daysShort: ["日", "月", "火", "水", "木", "金", "土"],
|
|
daysMin: ["日", "月", "火", "水", "木", "金", "土"],
|
|
months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
|
|
monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
|
|
weekShort: '週',
|
|
weekStart:0
|
|
};
|
|
}(jQuery));
|