el.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. //! moment.js locale configuration
  2. //! locale : Greek [el]
  3. //! author : Aggelos Karalias : https://github.com/mehiel
  4. import moment from '../moment';
  5. function isFunction(input) {
  6. return (
  7. (typeof Function !== 'undefined' && input instanceof Function) ||
  8. Object.prototype.toString.call(input) === '[object Function]'
  9. );
  10. }
  11. export default moment.defineLocale('el', {
  12. monthsNominativeEl:
  13. 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
  14. '_'
  15. ),
  16. monthsGenitiveEl:
  17. 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
  18. '_'
  19. ),
  20. months: function (momentToFormat, format) {
  21. if (!momentToFormat) {
  22. return this._monthsNominativeEl;
  23. } else if (
  24. typeof format === 'string' &&
  25. /D/.test(format.substring(0, format.indexOf('MMMM')))
  26. ) {
  27. // if there is a day number before 'MMMM'
  28. return this._monthsGenitiveEl[momentToFormat.month()];
  29. } else {
  30. return this._monthsNominativeEl[momentToFormat.month()];
  31. }
  32. },
  33. monthsShort: 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),
  34. weekdays: 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split(
  35. '_'
  36. ),
  37. weekdaysShort: 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),
  38. weekdaysMin: 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),
  39. meridiem: function (hours, minutes, isLower) {
  40. if (hours > 11) {
  41. return isLower ? 'μμ' : 'ΜΜ';
  42. } else {
  43. return isLower ? 'πμ' : 'ΠΜ';
  44. }
  45. },
  46. isPM: function (input) {
  47. return (input + '').toLowerCase()[0] === 'μ';
  48. },
  49. meridiemParse: /[ΠΜ]\.?Μ?\.?/i,
  50. longDateFormat: {
  51. LT: 'h:mm A',
  52. LTS: 'h:mm:ss A',
  53. L: 'DD/MM/YYYY',
  54. LL: 'D MMMM YYYY',
  55. LLL: 'D MMMM YYYY h:mm A',
  56. LLLL: 'dddd, D MMMM YYYY h:mm A',
  57. },
  58. calendarEl: {
  59. sameDay: '[Σήμερα {}] LT',
  60. nextDay: '[Αύριο {}] LT',
  61. nextWeek: 'dddd [{}] LT',
  62. lastDay: '[Χθες {}] LT',
  63. lastWeek: function () {
  64. switch (this.day()) {
  65. case 6:
  66. return '[το προηγούμενο] dddd [{}] LT';
  67. default:
  68. return '[την προηγούμενη] dddd [{}] LT';
  69. }
  70. },
  71. sameElse: 'L',
  72. },
  73. calendar: function (key, mom) {
  74. var output = this._calendarEl[key],
  75. hours = mom && mom.hours();
  76. if (isFunction(output)) {
  77. output = output.apply(mom);
  78. }
  79. return output.replace('{}', hours % 12 === 1 ? 'στη' : 'στις');
  80. },
  81. relativeTime: {
  82. future: 'σε %s',
  83. past: '%s πριν',
  84. s: 'λίγα δευτερόλεπτα',
  85. ss: '%d δευτερόλεπτα',
  86. m: 'ένα λεπτό',
  87. mm: '%d λεπτά',
  88. h: 'μία ώρα',
  89. hh: '%d ώρες',
  90. d: 'μία μέρα',
  91. dd: '%d μέρες',
  92. M: 'ένας μήνας',
  93. MM: '%d μήνες',
  94. y: 'ένας χρόνος',
  95. yy: '%d χρόνια',
  96. },
  97. dayOfMonthOrdinalParse: /\d{1,2}η/,
  98. ordinal: '%dη',
  99. week: {
  100. dow: 1, // Monday is the first day of the week.
  101. doy: 4, // The week that contains Jan 4st is the first week of the year.
  102. },
  103. });