No Description

tr.js 933B

123456789101112131415161718192021222324252627282930
  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.tr = factory()));
  5. }(this, function () { 'use strict';
  6. var tr = {
  7. code: "tr",
  8. week: {
  9. dow: 1,
  10. doy: 7 // The week that contains Jan 1st is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "geri",
  14. next: "ileri",
  15. today: "bugün",
  16. month: "Ay",
  17. week: "Hafta",
  18. day: "Gün",
  19. list: "Ajanda"
  20. },
  21. weekLabel: "Hf",
  22. allDayText: "Tüm gün",
  23. eventLimitText: "daha fazla",
  24. noEventsMessage: "Gösterilecek etkinlik yok"
  25. };
  26. return tr;
  27. }));