Hello,
I´m having some difficulties translating the calendar, can you help me?
I´m sending an image that shows the words that I could not find at .pot file for translation. I´m using PoEdit and the .pot file from version 2.3.1.
Thanks,
Fabiana.
Hello faterra!
You can change the date format and placeholder text with following code- add it to the bottom of functions.php and replace DD / MM / YY with a date format of your choice
add_filter('avf_datepicker_dateformat', 'avia_change_dateformat_cf');
add_filter('avf_datepicker_date_placeholder', 'avia_change_placeholder_cf');
function avia_change_dateformat_cf() { return 'dd / mm / yy'; }
function avia_change_placeholder_cf() { return 'DD / MM / YY'; }
The prev/next button is not translatable at the moment – we’ll fix this in the next update.
Cheers!
Peter