]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Add Merdiem Parse support for Korean Languages.
authorJeeeyul <Jeeeyul@gmail.com>
Thu, 19 Dec 2013 05:55:56 +0000 (14:55 +0900)
committerJeeeyul <Jeeeyul@gmail.com>
Thu, 19 Dec 2013 05:55:56 +0000 (14:55 +0900)
lang/ko.js

index 69a6e381246c9a0aff2900e098564d2e9d45be7b..1f87c55fb67a937ba19efb488ba363e2e08eb5f5 100644 (file)
@@ -1,7 +1,10 @@
 // moment.js language configuration
 // language : korean (ko)
-// author : Kyungwook, Park : https://github.com/kyungw00k
-
+//
+// authors 
+//
+// - Kyungwook, Park : https://github.com/kyungw00k
+// - Jeeeyul Lee <jeeeyul@gmail.com>
 (function (factory) {
     if (typeof define === 'function' && define.amd) {
         define(['moment'], factory); // AMD
             y : "일년",
             yy : "%d년"
         },
-        ordinal : '%d일'
+        ordinal : '%d일',
+        meridiemParse : /(오전|오후)/i,
+        isPM : function(token){
+               return token == "오후";
+        }
     });
 }));