mobiscroll.i18n.zh.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. (function ($) {
  2. $.mobiscroll.i18n.zh = $.extend($.mobiscroll.i18n.zh, {
  3. // Core
  4. setText: '确定',
  5. cancelText: '取消',
  6. clearText: '明确',
  7. selectedText: '选',
  8. // Datetime component
  9. dateFormat: 'yy/mm/dd',
  10. dateOrder: 'yymmdd',
  11. dayNames: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
  12. dayNamesShort: ['日', '一', '二', '三', '四', '五', '六'],
  13. dayNamesMin: ['日', '一', '二', '三', '四', '五', '六'],
  14. dayText: '日',
  15. hourText: '时',
  16. minuteText: '分',
  17. monthNames: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
  18. monthNamesShort: ['一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二'],
  19. monthText: '月',
  20. secText: '秒',
  21. timeFormat: 'HH:ii',
  22. timeWheels: 'HHii',
  23. yearText: '年',
  24. nowText: '当前',
  25. pmText: '下午',
  26. amText: '上午',
  27. // Calendar component
  28. dateText: '日',
  29. timeText: '时间',
  30. calendarText: '日历',
  31. closeText: '关闭',
  32. // Daterange component
  33. fromText: '开始时间',
  34. toText: '结束时间',
  35. // Measurement components
  36. wholeText: '合计',
  37. fractionText: '分数',
  38. unitText: '单位',
  39. // Time / Timespan component
  40. labels: ['年', '月', '日', '小时', '分钟', '秒', ''],
  41. labelsShort: ['年', '月', '日', '点', '分', '秒', ''],
  42. // Timer component
  43. startText: '开始',
  44. stopText: '停止',
  45. resetText: '重置',
  46. lapText: '圈',
  47. hideText: '隐藏',
  48. // Listview
  49. backText: '背部',
  50. undoText: '复原'
  51. });
  52. })(jQuery);