From 1c86ed64f45c231a708be658fbfb3bc68a71af3c Mon Sep 17 00:00:00 2001 From: Iskren Chernev Date: Thu, 8 May 2014 00:40:21 -0700 Subject: [PATCH] Implement meridiemParse and isPM in Russian --- lang/ru.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lang/ru.js b/lang/ru.js index ac5400da8..dc013a7fc 100644 --- a/lang/ru.js +++ b/lang/ru.js @@ -125,7 +125,10 @@ yy : relativeTimeWithPlural }, - // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason + meridiemParse: /ночи|утра|дня|вечера/i, + isPM : function (input) { + return /^(дня|вечера)$/.test(input); + }, meridiem : function (hour, minute, isLower) { if (hour < 4) { -- 2.47.2