From: Jakub Onderka Date: Sat, 18 Jan 2014 12:16:12 +0000 (+0100) Subject: Add space after day and month in 'L' and 'l' format in Czech language X-Git-Tag: 2.6.0~23^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F1426%2Fhead;p=thirdparty%2Fmoment.git Add space after day and month in 'L' and 'l' format in Czech language --- diff --git a/lang/cs.js b/lang/cs.js index 86e78a092..cb79c9b3c 100644 --- a/lang/cs.js +++ b/lang/cs.js @@ -87,7 +87,7 @@ weekdaysMin : "ne_po_út_st_čt_pá_so".split("_"), longDateFormat : { LT: "H.mm", - L : "DD.MM.YYYY", + L : "DD. MM. YYYY", LL : "D. MMMM YYYY", LLL : "D. MMMM YYYY LT", LLLL : "dddd D. MMMM YYYY LT" diff --git a/test/lang/cs.js b/test/lang/cs.js index 9ef2ed8c6..ada0edf02 100644 --- a/test/lang/cs.js +++ b/test/lang/cs.js @@ -53,11 +53,11 @@ exports["lang:cs"] = { ['s ss', '50 50'], ['a A', 'pm PM'], ['DDDo [den v roce]', '45. den v roce'], - ['L', '14.02.2010'], + ['L', '14. 02. 2010'], ['LL', '14. únor 2010'], ['LLL', '14. únor 2010 15.25'], ['LLLL', 'neděle 14. únor 2010 15.25'], - ['l', '14.2.2010'], + ['l', '14. 2. 2010'], ['ll', '14. úno 2010'], ['lll', '14. úno 2010 15.25'], ['llll', 'ne 14. úno 2010 15.25']