You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

time.ts 875B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const translation = {
  2. daysInWeek: {
  3. Sun: '日',
  4. Mon: '一',
  5. Tue: '二',
  6. Wed: '三',
  7. Thu: '四',
  8. Fri: '五',
  9. Sat: '六',
  10. },
  11. months: {
  12. January: '一月',
  13. June: '六月',
  14. March: '三月',
  15. February: '二月',
  16. August: '八月',
  17. April: '四月',
  18. May: '五月',
  19. July: '七月',
  20. November: '十一月',
  21. December: '十二月',
  22. September: '九月',
  23. October: '十月',
  24. },
  25. operation: {
  26. cancel: '取消',
  27. now: '現在',
  28. ok: '好',
  29. pickDate: '選擇日期',
  30. },
  31. title: {
  32. pickTime: '選擇時間',
  33. },
  34. defaultPlaceholder: '選擇一個時間...',
  35. dateFormats: {
  36. display: 'MMMM D, YYYY',
  37. output: 'YYYY-MM-DD',
  38. displayWithTime: 'MMMM D, YYYY hh:mm A',
  39. input: 'YYYY-MM-DD',
  40. outputWithTime: 'YYYY年MM月DD日 HH:mm:ss.SSSZ',
  41. },
  42. }
  43. export default translation