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.

92 lines
4.0 KiB

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