1 // moment.js language configuration
2 // language : modern greek (el)
3 // author : Aggelos Karalias : https://github.com/mehiel
6 if (typeof define === 'function' && define.amd) {
7 define(['moment'], factory); // AMD
8 } else if (typeof exports === 'object') {
9 module.exports = factory(require('../moment')); // Node
11 factory(window.moment); // Browser global
14 return moment.lang('el', {
15 monthsNominativeEl : "Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),
16 monthsGenitiveEl : "Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),
17 months : function (momentToFormat, format) {
18 if (/D/.test(format.substring(0, format.indexOf("MMMM")))) { // if there is a day number before 'MMMM'
19 return this._monthsGenitiveEl[momentToFormat.month()];
21 return this._monthsNominativeEl[momentToFormat.month()];
24 monthsShort : "Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),
25 weekdays : "Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),
26 weekdaysShort : "Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),
27 weekdaysMin : "Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),
28 meridiem : function (hours, minutes, isLower) {
30 return isLower ? 'μμ' : 'ΜΜ';
32 return isLower ? 'πμ' : 'ΠΜ';
39 LLL : "D MMMM YYYY LT",
40 LLLL : "dddd, D MMMM YYYY LT"
43 sameDay : '[Σήμερα {}] LT',
44 nextDay : '[Αύριο {}] LT',
45 nextWeek : 'dddd [{}] LT',
46 lastDay : '[Χθες {}] LT',
47 lastWeek : '[την προηγούμενη] dddd [{}] LT',
50 calendar : function (key, mom) {
51 var output = this._calendarEl[key],
52 hours = mom && mom.hours();
54 return output.replace("{}", (hours % 12 === 1 ? "στη" : "στις"));
71 ordinal : function (number) {
75 dow : 1, // Monday is the first day of the week.
76 doy : 4 // The week that contains Jan 4st is the first week of the year.