mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
853 B
18 lines
853 B
/**
|
|
* Traditional Chinese translation for bootstrap-datepicker
|
|
* Rung-Sheng Jang <daniel@i-trend.co.cc>
|
|
* FrankWu <frankwu100@gmail.com> Fix more appropriate use of Traditional Chinese habit
|
|
*/
|
|
;(function($){
|
|
$.fn.datepicker.dates['zh-TW'] = {
|
|
days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
|
|
daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六"],
|
|
daysMin: ["日", "一", "二", "三", "四", "五", "六"],
|
|
months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
|
|
monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
|
|
today: "今天",
|
|
format: "yyyy年mm月dd日",
|
|
weekStart: 1,
|
|
clear: "清除"
|
|
};
|
|
}(jQuery));
|
|
|