Time translation issue
-
I am using WordPress 2.7 & qTranslate 2.
The translation matrix works fine.
It translates my blogs, titles, pages, etc.
Also it translates the dates in the category list on the right hand side of my website.What it doesn’t do is:
Translating the date on which an entry was posted.
For example: This entry was posted on 13 December 2008 at 23:30The code I use is:
<?php _e( '<!--:nl-->'.htmlentities( strftime('%A %e %B %Y om %R uur.', strtotime( the_date('Y/m/d H:i', '', '', FALSE) ) ) ) .'<!--:--><!--:en-->'.htmlentities( strftime('%A, %e %B %Y at %I:%M %P', strtotime( the_date('Y/m/d H:i', '', '', FALSE) ) ) ).'<!--:-->' ) ?>
When viewing the site in Dutch the date is returned as:
Friday 12 December 2008 om 00:00 uurNote the incorrect language and time display.
It should read:
Vrijdag 12 december 2008 om 23:30 uur.Does anyone know what’s wrong with the above code?
I’ve been at this for days now, and it’s driving me crazy!I’ve also tried the tips in this article:
https://www.ginchen.de/en/2008/05/11/datumsformatierung-in-wordpress/
but they didn’t resolve the issue.Also a post at the qTranslate forum doesn’t help me any further (very few responses) https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=309&start=20
I hope that someone here can help me out!
Again, it’s only just the “posted on” dates, that aren’t translated.
- The topic ‘Time translation issue’ is closed to new replies.