ro.global.js 826 B

1234567891011121314151617181920212223242526272829303132333435
  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: 'ro',
  10. week: {
  11. dow: 1,
  12. doy: 7, // The week that contains Jan 1st is the first week of the year.
  13. },
  14. buttonText: {
  15. prev: 'precedentă',
  16. next: 'următoare',
  17. today: 'Azi',
  18. year: 'An',
  19. month: 'Lună',
  20. week: 'Săptămână',
  21. day: 'Zi',
  22. list: 'Agendă',
  23. },
  24. weekText: 'Săpt',
  25. allDayText: 'Toată ziua',
  26. moreLinkText(n) {
  27. return '+alte ' + n;
  28. },
  29. noEventsText: 'Nu există evenimente de afișat',
  30. };
  31. index_js.globalLocales.push(locale);
  32. })(FullCalendar);