112 lines
4.9 KiB
JavaScript
112 lines
4.9 KiB
JavaScript
/*
|
|
* This file has been compiled from: /modules/system/lang/zh-tw/client.php
|
|
*/
|
|
if ($.oc === undefined) $.oc = {}
|
|
if ($.oc.langMessages === undefined) $.oc.langMessages = {}
|
|
$.oc.langMessages['zh-tw'] = $.extend(
|
|
$.oc.langMessages['zh-tw'] || {},
|
|
{"markdowneditor":{"formatting":"Formatting","quote":"Quote","code":"Code","header1":"Header 1","header2":"Header 2","header3":"Header 3","header4":"Header 4","header5":"Header 5","header6":"Header 6","bold":"Bold","italic":"Italic","unorderedlist":"Unordered List","orderedlist":"Ordered List","video":"Video","image":"Image","link":"Link","horizontalrule":"Insert Horizontal Rule","fullscreen":"Full screen","preview":"Preview"},"mediamanager":{"insert_link":"Insert Media Link","insert_image":"Insert Media Image","insert_video":"Insert Media Video","insert_audio":"Insert Media Audio","invalid_file_empty_insert":"Please select file to insert a links to.","invalid_file_single_insert":"Please select a single file.","invalid_image_empty_insert":"Please select image(s) to insert.","invalid_video_empty_insert":"Please select a video file to insert.","invalid_audio_empty_insert":"Please select an audio file to insert."},"alert":{"confirm_button_text":"OK","cancel_button_text":"Cancel"},"datepicker":{"previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}}
|
|
);
|
|
|
|
//! moment.js locale configuration
|
|
//! locale : traditional chinese (zh-tw)
|
|
//! author : Ben : https://github.com/ben-lin
|
|
|
|
;(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined'
|
|
&& typeof require === 'function' ? factory(require('../moment')) :
|
|
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
|
factory(global.moment)
|
|
}(this, function (moment) { 'use strict';
|
|
|
|
|
|
var zh_tw = moment.defineLocale('zh-tw', {
|
|
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分',
|
|
LTS : 'Ah點m分s秒',
|
|
L : 'YYYY年MMMD日',
|
|
LL : 'YYYY年MMMD日',
|
|
LLL : 'YYYY年MMMD日Ah點mm分',
|
|
LLLL : 'YYYY年MMMD日ddddAh點mm分',
|
|
l : 'YYYY年MMMD日',
|
|
ll : 'YYYY年MMMD日',
|
|
lll : 'YYYY年MMMD日Ah點mm分',
|
|
llll : 'YYYY年MMMD日ddddAh點mm分'
|
|
},
|
|
meridiemParse: /早上|上午|中午|下午|晚上/,
|
|
meridiemHour : function (hour, meridiem) {
|
|
if (hour === 12) {
|
|
hour = 0;
|
|
}
|
|
if (meridiem === '早上' || meridiem === '上午') {
|
|
return hour;
|
|
} else if (meridiem === '中午') {
|
|
return hour >= 11 ? hour : hour + 12;
|
|
} else if (meridiem === '下午' || meridiem === '晚上') {
|
|
return hour + 12;
|
|
}
|
|
},
|
|
meridiem : function (hour, minute, isLower) {
|
|
var hm = hour * 100 + minute;
|
|
if (hm < 900) {
|
|
return '早上';
|
|
} else if (hm < 1130) {
|
|
return '上午';
|
|
} else if (hm < 1230) {
|
|
return '中午';
|
|
} else if (hm < 1800) {
|
|
return '下午';
|
|
} else {
|
|
return '晚上';
|
|
}
|
|
},
|
|
calendar : {
|
|
sameDay : '[今天]LT',
|
|
nextDay : '[明天]LT',
|
|
nextWeek : '[下]ddddLT',
|
|
lastDay : '[昨天]LT',
|
|
lastWeek : '[上]ddddLT',
|
|
sameElse : 'L'
|
|
},
|
|
ordinalParse: /\d{1,2}(日|月|週)/,
|
|
ordinal : function (number, period) {
|
|
switch (period) {
|
|
case 'd' :
|
|
case 'D' :
|
|
case 'DDD' :
|
|
return number + '日';
|
|
case 'M' :
|
|
return number + '月';
|
|
case 'w' :
|
|
case 'W' :
|
|
return number + '週';
|
|
default :
|
|
return number;
|
|
}
|
|
},
|
|
relativeTime : {
|
|
future : '%s內',
|
|
past : '%s前',
|
|
s : '幾秒',
|
|
m : '1分鐘',
|
|
mm : '%d分鐘',
|
|
h : '1小時',
|
|
hh : '%d小時',
|
|
d : '1天',
|
|
dd : '%d天',
|
|
M : '1個月',
|
|
MM : '%d個月',
|
|
y : '1年',
|
|
yy : '%d年'
|
|
}
|
|
});
|
|
|
|
return zh_tw;
|
|
|
|
}));
|