vera default date format

I’m using UI 5, the latest public beta, on a vera 3. When I click on Automation → Schedules, I see the date format as dd-mm-yyyy HH:MM , but as an American I’m used to seeing dates as mm-dd-yyyy HH:MM . Is there an easy way to change this?

I guess I’m going to answer my own question, looks like the date format is hard-coded in:

cmh/js/common/cpanel_data.js

4270 if(timersNo>0){ 4271 for(var i=0;i<timersNo;i++){ 4272 var timerName=sceneObj.timers[i].name; 4273 var timerEnabled=sceneObj.timers[i].enabled; 4274 html += '<tr valign="middle">' 4275 + ' <td align="center" class="continut3">'+"Name for this schedule"+':</td>' 4276 + ' <td align="center">'+timerName+'</td>' 4277 + ' <td>'+"Last run"+': '+((typeof(sceneObj.timers[i].last_run)!='undefined')? cms_timestamp_to_local_date(scene Obj.timers[i].last_run,'d-M-Y h:I:s'):'')+'</td>'