1 //! moment.js locale configuration
2 //! locale : Greek [el]
3 //! author : Aggelos Karalias : https://github.com/mehiel
5 ;(function (global
, factory
) {
6 typeof exports
=== 'object' && typeof module
!== 'undefined'
7 && typeof require
=== 'function' ? factory(require('../moment')) :
8 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
10 }(this, function (moment
) { 'use strict';
12 function isFunction(input
) {
13 return input
instanceof Function
|| Object
.prototype.toString
.call(input
) === '[object Function]';
17 var el
= moment
.defineLocale('el', {
18 monthsNominativeEl
: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'),
19 monthsGenitiveEl
: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'),
20 months : function (momentToFormat
, format
) {
21 if (/D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before
'MMMM'
22 return this._monthsGenitiveEl
[momentToFormat
.month()];
24 return this._monthsNominativeEl
[momentToFormat
.month()];
27 monthsShort
: 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),
28 weekdays
: 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split('_'),
29 weekdaysShort
: 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),
30 weekdaysMin
: 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),
31 meridiem : function (hours
, minutes
, isLower
) {
33 return isLower
? 'μμ' : 'ΜΜ';
35 return isLower
? 'πμ' : 'ΠΜ';
38 isPM : function (input
) {
39 return ((input
+ '').toLowerCase()[0] === 'μ');
41 meridiemParse
: /[ΠΜ]\.?Μ?\.?/i,
47 LLL
: 'D MMMM YYYY h:mm A',
48 LLLL
: 'dddd, D MMMM YYYY h:mm A'
51 sameDay
: '[Σήμερα {}] LT',
52 nextDay
: '[Αύριο {}] LT',
53 nextWeek
: 'dddd [{}] LT',
54 lastDay
: '[Χθες {}] LT',
55 lastWeek : function () {
58 return '[το προηγούμενο] dddd [{}] LT';
60 return '[την προηγούμενη] dddd [{}] LT';
65 calendar : function (key
, mom
) {
66 var output
= this._calendarEl
[key
],
67 hours
= mom
&& mom
.hours();
68 if (isFunction(output
)) {
69 output
= output
.apply(mom
);
71 return output
.replace('{}', (hours
% 12 === 1 ? 'στη' : 'στις'));
76 s
: 'λίγα δευτερόλεπτα',
88 ordinalParse
: /\d{1,2}η/,
91 dow
: 1, // Monday is the first day of the week.
92 doy
: 4 // The week that contains Jan 4st is the first week of the year.