Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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 3.8KB

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