el.js 4.5 KB

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