CC-5335 : I18N: Calendar picker strings are not translated.
loading the same strings as the jquery calendar.
This commit is contained in:
parent
59f6578e2e
commit
71001480d2
|
@ -30,6 +30,21 @@ var i18n_months = [
|
||||||
$.i18n._("December")
|
$.i18n._("December")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
var i18n_months_short = [
|
||||||
|
$.i18n._("Jan"),
|
||||||
|
$.i18n._("Feb"),
|
||||||
|
$.i18n._("Mar"),
|
||||||
|
$.i18n._("Apr"),
|
||||||
|
$.i18n._("May"),
|
||||||
|
$.i18n._("Jun"),
|
||||||
|
$.i18n._("Jul"),
|
||||||
|
$.i18n._("Aug"),
|
||||||
|
$.i18n._("Sep"),
|
||||||
|
$.i18n._("Oct"),
|
||||||
|
$.i18n._("Nov"),
|
||||||
|
$.i18n._("Dec")
|
||||||
|
];
|
||||||
|
|
||||||
var i18n_days_short = [
|
var i18n_days_short = [
|
||||||
$.i18n._("Su"),
|
$.i18n._("Su"),
|
||||||
$.i18n._("Mo"),
|
$.i18n._("Mo"),
|
||||||
|
|
|
@ -466,6 +466,13 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
//set the locale names for the bootstrap calendar.
|
||||||
|
$.fn.datetimepicker.dates = {
|
||||||
|
daysMin: i18n_days_short,
|
||||||
|
months: i18n_months,
|
||||||
|
monthsShort: i18n_months_short
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
$historyContentDiv = $("#history_content");
|
$historyContentDiv = $("#history_content");
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,9 @@
|
||||||
constructor: DateTimePicker,
|
constructor: DateTimePicker,
|
||||||
|
|
||||||
init: function(element, options) {
|
init: function(element, options) {
|
||||||
|
|
||||||
|
dates = $.fn.datetimepicker.dates;
|
||||||
|
|
||||||
var icon;
|
var icon;
|
||||||
if (!(options.pickTime || options.pickDate))
|
if (!(options.pickTime || options.pickDate))
|
||||||
throw new Error('Must choose at least one picker');
|
throw new Error('Must choose at least one picker');
|
||||||
|
@ -340,7 +343,7 @@
|
||||||
var dowCnt = this.weekStart;
|
var dowCnt = this.weekStart;
|
||||||
var html = $('<tr>');
|
var html = $('<tr>');
|
||||||
while (dowCnt < this.weekStart + 7) {
|
while (dowCnt < this.weekStart + 7) {
|
||||||
html.append('<th class="dow">' + dates[this.language].daysMin[(dowCnt++) % 7] + '</th>');
|
html.append('<th class="dow">' + dates.daysMin[(dowCnt++) % 7] + '</th>');
|
||||||
}
|
}
|
||||||
this.widget.find('.datepicker-days thead').append(html);
|
this.widget.find('.datepicker-days thead').append(html);
|
||||||
},
|
},
|
||||||
|
@ -349,7 +352,7 @@
|
||||||
var html = '';
|
var html = '';
|
||||||
var i = 0
|
var i = 0
|
||||||
while (i < 12) {
|
while (i < 12) {
|
||||||
html += '<span class="month">' + dates[this.language].monthsShort[i++] + '</span>';
|
html += '<span class="month">' + dates.monthsShort[i++] + '</span>';
|
||||||
}
|
}
|
||||||
this.widget.find('.datepicker-months td').append(html);
|
this.widget.find('.datepicker-months td').append(html);
|
||||||
},
|
},
|
||||||
|
@ -373,7 +376,7 @@
|
||||||
this.widget.find('.datepicker-years').find('.disabled').removeClass('disabled');
|
this.widget.find('.datepicker-years').find('.disabled').removeClass('disabled');
|
||||||
|
|
||||||
this.widget.find('.datepicker-days th:eq(1)').text(
|
this.widget.find('.datepicker-days th:eq(1)').text(
|
||||||
dates[this.language].months[month] + ' ' + year);
|
dates.months[month] + ' ' + year);
|
||||||
|
|
||||||
var prevMonth = UTCDate(year, month-1, 28, 0, 0, 0, 0);
|
var prevMonth = UTCDate(year, month-1, 28, 0, 0, 0, 0);
|
||||||
var day = DPGlobal.getDaysInMonth(
|
var day = DPGlobal.getDaysInMonth(
|
||||||
|
@ -1103,7 +1106,6 @@
|
||||||
$.fn.datetimepicker.Constructor = DateTimePicker;
|
$.fn.datetimepicker.Constructor = DateTimePicker;
|
||||||
var dpgId = 0;
|
var dpgId = 0;
|
||||||
var dates = $.fn.datetimepicker.dates = {
|
var dates = $.fn.datetimepicker.dates = {
|
||||||
en: {
|
|
||||||
days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
|
days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
|
||||||
"Friday", "Saturday", "Sunday"],
|
"Friday", "Saturday", "Sunday"],
|
||||||
daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
|
daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
|
||||||
|
@ -1112,7 +1114,6 @@
|
||||||
"July", "August", "September", "October", "November", "December"],
|
"July", "August", "September", "October", "November", "December"],
|
||||||
monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
|
monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
|
||||||
"Aug", "Sep", "Oct", "Nov", "Dec"]
|
"Aug", "Sep", "Oct", "Nov", "Dec"]
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
var dateFormatComponents = {
|
var dateFormatComponents = {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue