From: Andrei Damian-Fekete Date: Fri, 1 Nov 2013 22:53:11 +0000 (+0100) Subject: Fix Romanian standard date format. X-Git-Tag: 2.5.0^2~40^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=749c8923845d511502ede82418e5407ec632cf12;p=thirdparty%2Fmoment.git Fix Romanian standard date format. Use dot instead of slash. --- diff --git a/lang/ro.js b/lang/ro.js index 9f85347f3..c5f06da02 100644 --- a/lang/ro.js +++ b/lang/ro.js @@ -20,7 +20,7 @@ weekdaysMin : "Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"), longDateFormat : { LT : "H:mm", - L : "DD/MM/YYYY", + L : "DD.MM.YYYY", LL : "D MMMM YYYY", LLL : "D MMMM YYYY H:mm", LLLL : "dddd, D MMMM YYYY H:mm" diff --git a/test/lang/ro.js b/test/lang/ro.js index c1edd81e3..c25508647 100644 --- a/test/lang/ro.js +++ b/test/lang/ro.js @@ -55,11 +55,11 @@ exports["lang:ro"] = { ['s ss', '50 50'], ['a A', 'pm PM'], ['[a] DDDo[a zi a anului]', 'a 45a zi a anului'], - ['L', '14/02/2010'], + ['L', '14.02.2010'], ['LL', '14 februarie 2010'], ['LLL', '14 februarie 2010 15:25'], ['LLLL', 'duminică, 14 februarie 2010 15:25'], - ['l', '14/2/2010'], + ['l', '14.2.2010'], ['ll', '14 feb 2010'], ['lll', '14 feb 2010 15:25'], ['llll', 'Dum, 14 feb 2010 15:25']