HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/vue-datepicker-next/locale/zh-tw.es.js
import DatePicker from 'vue-datepicker-next';

var locale = {
  months: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
  monthsShort: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
  weekdays: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
  weekdaysShort: ['週日', '週一', '週二', '週三', '週四', '週五', '週六'],
  weekdaysMin: ['日', '一', '二', '三', '四', '五', '六'],
  firstDayOfWeek: 1,
  firstWeekContainsDate: 4,
  meridiemParse: /上午|下午/,
  meridiem: function meridiem(hour) {
    if (hour < 12) {
      return '上午';
    }

    return '下午';
  },
  isPM: function isPM(input) {
    return input === '下午';
  }
};

const lang = {
    formatLocale: locale,
    yearFormat: 'YYYY年',
    monthFormat: 'MMM',
    monthBeforeYear: false,
};
DatePicker.locale('zh-tw', lang);

export { lang as default };