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

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