gl.global.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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: 'gl',
  10. week: {
  11. dow: 1,
  12. doy: 4, // The week that contains Jan 4th is the first week of the year.
  13. },
  14. buttonText: {
  15. prev: 'Ant',
  16. next: 'Seg',
  17. today: 'Hoxe',
  18. year: 'Ano',
  19. month: 'Mes',
  20. week: 'Semana',
  21. day: 'Día',
  22. list: 'Axenda',
  23. },
  24. buttonHints: {
  25. prev: '$0 antes',
  26. next: '$0 seguinte',
  27. today(buttonText) {
  28. return (buttonText === 'Día') ? 'Hoxe' :
  29. ((buttonText === 'Semana') ? 'Esta' : 'Este') + ' ' + buttonText.toLocaleLowerCase();
  30. },
  31. },
  32. viewHint(buttonText) {
  33. return 'Vista ' + (buttonText === 'Semana' ? 'da' : 'do') + ' ' + buttonText.toLocaleLowerCase();
  34. },
  35. weekText: 'Sm',
  36. weekTextLong: 'Semana',
  37. allDayText: 'Todo o día',
  38. moreLinkText: 'máis',
  39. moreLinkHint(eventCnt) {
  40. return `Amosar ${eventCnt} eventos máis`;
  41. },
  42. noEventsText: 'Non hai eventos para amosar',
  43. navLinkHint: 'Ir ao $0',
  44. closeHint: 'Pechar',
  45. timeHint: 'A hora',
  46. eventHint: 'Evento',
  47. };
  48. index_js.globalLocales.push(locale);
  49. })(FullCalendar);