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