如何本地化日期范围选择器?

How to localize the Date Range Picker?

我正在使用 date range picker component for choosing date ranges. Does it support I18n? 如何将日历语言编辑为 Traditional Chinese?

这是配置代码的示例片段:

// Set the date range picker
$('input[name="daterange-last-30-days"]').daterangepicker({

    // Predefined Ranges
    startDate: moment().subtract('days', 30),
    endDate: moment(),
    "applyClass": "btn-success",
    "cancelClass": "btn-danger",
    locale: {
        format: 'YYYY/MM/DD',
        // Language Setting
        monthNames: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
        daysShort: ["日", "一", "二", "三", "四", "五", "六"]
    }
});

如有任何建议或指导,我们将不胜感激。

您可以使用此 jquery plugin 日期范围选择器的中文支持。

检查link是否有帮助...