01/18/2018 at 10:03 am
#447887
Keymaster
@ Philip
Sorry, that is an oversight on my part. The dates are not translatable. I made the necessary changes for the next update to be released in a couple weeks. If you are able to make a minor change to a PHP file you could apply the change now. Here’s the file you need to edit:
../wp-content/plugins/connections/includes/entry/class.entry-data.php
Change line 3501 from:
return gmdate( $format, $nextUDay );
To this:
return date_i18n( $format, strtotime( gmdate( 'c', $nextUDay ) ) );
This runs the date thru the core WP function which handles the translation of dates.
Hope this helps!
