Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Won't Fix
-
Affects Version/s: 2.1.0-M2
-
Fix Version/s: 2.2.1
-
Component/s: i18n, Web - General
-
Labels:None
-
Environment:Windows
Description
I had to fix scripts/calendar/lang/calendar-es.js and -ca.js. Both had bad encoding. Converting them to UTF-8 encoding solves the bad encoding problem.
For -ca.js, these are the correct date formats:
Calendar._TT["DEF_DATE_FORMAT"] = "%Y%m-%d";-Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
+Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
+Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";