From a7184d5d52b7288fba6e4c7ab84ce67fbef17a87 Mon Sep 17 00:00:00 2001 From: Nikos Kalogridis Date: Thu, 31 Jul 2014 09:44:56 +0300 Subject: [PATCH] Added meridiem parsing functions for el language --- locale/el.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/locale/el.js b/locale/el.js index c112097b7..eb8eb1a97 100644 --- a/locale/el.js +++ b/locale/el.js @@ -32,6 +32,10 @@ return isLower ? 'πμ' : 'ΠΜ'; } }, + isPM : function (input) { + return ((input + '').toLowerCase()[0] === 'μ'); + }, + meridiemParse : /[ΠΜ]\.?Μ?\.?/i, longDateFormat : { LT : 'h:mm A', L : 'DD/MM/YYYY', -- 2.47.2