ja.js 866 B

12345678910111213141516171819202122232425262728
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ja = factory()));
  5. }(this, function () { 'use strict';
  6. var ja = {
  7. code: "ja",
  8. buttonText: {
  9. prev: "前",
  10. next: "次",
  11. today: "今日",
  12. month: "月",
  13. week: "週",
  14. day: "日",
  15. list: "予定リスト"
  16. },
  17. weekLabel: "週",
  18. allDayText: "終日",
  19. eventLimitText: function (n) {
  20. return "他 " + n + " 件";
  21. },
  22. noEventsMessage: "表示する予定はありません"
  23. };
  24. return ja;
  25. }));