修复比赛倒计时中中英文混合的问题

This commit is contained in:
virusdefender 2015-10-10 18:50:43 +08:00
parent 2abdfa71c4
commit 3f052a15a8

View File

@ -694,20 +694,20 @@
// Store default english locale so we can switch easier
$.fn.countdown.locale.en = {
yearText: 'years',
monthText: 'months',
weekText: 'weeks',
dayText: 'days',
hourText: 'hours',
minText: 'mins',
secText: 'sec',
yearSingularText: 'year',
monthSingularText: 'month',
weekSingularText: 'week',
daySingularText: 'day',
hourSingularText: 'hour',
minSingularText: 'min',
secSingularText: 'sec',
yearText: '',
monthText: '',
weekText: '星期',
dayText: '',
hourText: '小时',
minText: '分钟',
secText: '',
yearSingularText: '',
monthSingularText: '',
weekSingularText: '星期',
daySingularText: '',
hourSingularText: '小时',
minSingularText: '分钟',
secSingularText: '',
isRTL: false
};