Changing the date format Changing the stored date format A common issue is changing the date format. Here's a custom script that you should use on the Scripts called on form process: in order to save the date in your preferred format. Replace "yourcalid" with your calendar field id: if(isset($processform['yourcalid'])){ $date = explode('/',$processform['yourcalid']); $processform['yourcalid'] = date('d/m/Y',strtotime($date[2].'-'.$date[0].'-'.$date[1])); } in the date('d/m/Y',...) expression, you could use a different format. Please refer to http://www.php.net/date to see all the recognized date characters. Changing the calendar language To change the calendar labels, you have to edit the file /components/com_forme/ calendar/calendar.js, and around line 900, change the code
MONTHS_SHORT : {key:"months_short", value:["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]}, MONTHS_LONG: {key:"months_long", value:["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]}, WEEKDAYS_1CHAR: {key:"weekdays_1char", value:["S", "M", "T", "W", "T", "F", "S"]}, WEEKDAYS_SHORT: {key:"weekdays_short", value:["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]}, WEEKDAYS_MEDIUM: {key:"weekdays_medium", value:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]}, WEEKDAYS_LONG: {key:"weekdays_long", value:["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]},
|