mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-02-02 10:31:35 +00:00
can read and display workouts
This commit is contained in:
67
node_modules/moment/lang/zh-tw.js
generated
vendored
Normal file
67
node_modules/moment/lang/zh-tw.js
generated
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
// moment.js language configuration
|
||||
// language : traditional chinese (zh-tw)
|
||||
// author : Ben : https://github.com/ben-lin
|
||||
(function () {
|
||||
var lang = {
|
||||
months : "一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),
|
||||
monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
|
||||
weekdays : "星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),
|
||||
weekdaysShort : "週日_週一_週二_週三_週四_週五_週六".split("_"),
|
||||
weekdaysMin : "日_一_二_三_四_五_六".split("_"),
|
||||
longDateFormat : {
|
||||
LT : "Ah點mm",
|
||||
L : "YYYY年MMMD日",
|
||||
LL : "YYYY年MMMD日",
|
||||
LLL : "YYYY年MMMD日LT",
|
||||
LLLL : "YYYY年MMMD日ddddLT"
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 9) {
|
||||
return "早上";
|
||||
} else if (hour < 11 && minute < 30) {
|
||||
return "上午";
|
||||
} else if (hour < 13 && minute < 30) {
|
||||
return "中午";
|
||||
} else if (hour < 18) {
|
||||
return "下午";
|
||||
} else {
|
||||
return "晚上";
|
||||
}
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[今天]LT',
|
||||
nextDay : '[明天]LT',
|
||||
nextWeek : '[下]ddddLT',
|
||||
lastDay : '[昨天]LT',
|
||||
lastWeek : '[上]ddddLT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : "%s內",
|
||||
past : "%s前",
|
||||
s : "幾秒",
|
||||
m : "一分鐘",
|
||||
mm : "%d分鐘",
|
||||
h : "一小時",
|
||||
hh : "%d小時",
|
||||
d : "一天",
|
||||
dd : "%d天",
|
||||
M : "一個月",
|
||||
MM : "%d個月",
|
||||
y : "一年",
|
||||
yy : "%d年"
|
||||
},
|
||||
ordinal : function (number) {
|
||||
return '';
|
||||
}
|
||||
};
|
||||
|
||||
// Node
|
||||
if (typeof module !== 'undefined' && module.exports) {
|
||||
module.exports = lang;
|
||||
}
|
||||
// Browser
|
||||
if (typeof window !== 'undefined' && this.moment && this.moment.lang) {
|
||||
this.moment.lang('zh-tw', lang);
|
||||
}
|
||||
}());
|
||||
Reference in New Issue
Block a user