el.js 3.9 KB

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