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.

hy-am.js 718B

2 vuotta sitten
1234567891011121314151617181920212223242526272829
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var hyAm = {
  4. code: 'hy-am',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th 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 hyAm;
  26. }());