Page 1 of 1

translate calendar to portuguese

Posted: 2019-08-05 14:29
by D Oliveira
is there a way to translate the calendar ( date field from detail view) to portuguese in a simple way?

Re: translate calendar to portuguese

Posted: 2019-08-05 15:15
by onoehring
Hi,

isn't there a resources\datepicker\js\lang\pt.js file?
In resources\datepicker\js\datepicker.js you could probably change around line 37 this code

Code: Select all

var loc = scriptFiles[scriptFiles.length - 1].src.substr(0, scriptFiles[scriptFiles.length - 1].src.lastIndexOf("/")) + "/lang/" + datePicker.languageinfo + ".js";
You should be able to use this (not tried)

Code: Select all

var loc = scriptFiles[scriptFiles.length - 1].src.substr(0, scriptFiles[scriptFiles.length - 1].src.lastIndexOf("/")) + "/lang/pt.js";
Afterwards, writeprotect the file to force your language.
Olaf