ja.global.js 684 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. FullCalendar Core v6.1.14
  3. Docs & License: https://fullcalendar.io
  4. (c) 2024 Adam Shaw
  5. */
  6. (function (index_js) {
  7. 'use strict';
  8. var locale = {
  9. code: 'ja',
  10. buttonText: {
  11. prev: '前',
  12. next: '次',
  13. today: '今日',
  14. year: '年',
  15. month: '月',
  16. week: '週',
  17. day: '日',
  18. list: '予定リスト',
  19. },
  20. weekText: '週',
  21. allDayText: '終日',
  22. moreLinkText(n) {
  23. return '他 ' + n + ' 件';
  24. },
  25. noEventsText: '表示する予定はありません',
  26. };
  27. index_js.globalLocales.push(locale);
  28. })(FullCalendar);