Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

30 lignes
724B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var uk = {
  4. code: 'uk',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 7, // The week that contains Jan 1st is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Попередній',
  11. next: 'далі',
  12. today: 'Сьогодні',
  13. month: 'Місяць',
  14. week: 'Тиждень',
  15. day: 'День',
  16. list: 'Порядок денний',
  17. },
  18. weekText: 'Тиж',
  19. allDayText: 'Увесь день',
  20. moreLinkText: function(n) {
  21. return '+ще ' + n + '...'
  22. },
  23. noEventsText: 'Немає подій для відображення',
  24. };
  25. return uk;
  26. }());