Ohm-Management - Projektarbeit B-ME
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.

el.js 4.2KB

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