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 //! moment.js locale configuration
14 function isFunction(input) {
16 (typeof Function !== 'undefined' && input instanceof Function) ||
17 Object.prototype.toString.call(input) === '[object Function]'
21 var el = moment.defineLocale('el', {
22 monthsNominativeEl: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
25 monthsGenitiveEl: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
28 months: function (momentToFormat, format) {
29 if (!momentToFormat) {
30 return this._monthsNominativeEl;
32 typeof format === 'string' &&
33 /D/.test(format.substring(0, format.indexOf('MMMM')))
35 // if there is a day number before 'MMMM'
36 return this._monthsGenitiveEl[momentToFormat.month()];
38 return this._monthsNominativeEl[momentToFormat.month()];
41 monthsShort: 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),
42 weekdays: 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split(
45 weekdaysShort: 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),
46 weekdaysMin: 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),
47 meridiem: function (hours, minutes, isLower) {
49 return isLower ? 'μμ' : 'ΜΜ';
51 return isLower ? 'πμ' : 'ΠΜ';
54 isPM: function (input) {
55 return (input + '').toLowerCase()[0] === 'μ';
57 meridiemParse: /[ΠΜ]\.?Μ?\.?/i,
63 LLL: 'D MMMM YYYY h:mm A',
64 LLLL: 'dddd, D MMMM YYYY h:mm A',
67 sameDay: '[Σήμερα {}] LT',
68 nextDay: '[Αύριο {}] LT',
69 nextWeek: 'dddd [{}] LT',
70 lastDay: '[Χθες {}] LT',
71 lastWeek: function () {
74 return '[το προηγούμενο] dddd [{}] LT';
76 return '[την προηγούμενη] dddd [{}] LT';
81 calendar: function (key, mom) {
82 var output = this._calendarEl[key],
83 hours = mom && mom.hours();
84 if (isFunction(output)) {
85 output = output.apply(mom);
87 return output.replace('{}', hours % 12 === 1 ? 'στη' : 'στις');
92 s: 'λίγα δευτερόλεπτα',
93 ss: '%d δευτερόλεπτα',
105 dayOfMonthOrdinalParse: /\d{1,2}η/,
108 dow: 1, // Monday is the first day of the week.
109 doy: 4, // The week that contains Jan 4st is the first week of the year.