You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 vuotta sitten
1234567891011121314151617181920212223242526272829
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var ka = {
  4. code: 'ka',
  5. week: {
  6. dow: 1,
  7. doy: 7,
  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 ka;
  26. }());