MyBB Community Forums

Full Version: Bug date
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.

I'm having problems with this new update Mybb 1.8.14.

In the user's quote, the date appears this way:

(, 'hour')today

(, 'hour')Yesterday


Originally this was so:

(Today, 'hour')

(Yesterday, 'hour')


In the language it looks like this:

<span title="{1}">Today</span>

<span title="{1}">Yesterday</span>
Thank!

Like.
I had the same problem with the Brazilian Portuguese translation.

To fix it, is only add 2 lines in global.lang.php translations file:


$l['today_rel'] = '<span title="{1}">Hoje</span>';
$l['yesterday_rel'] = '<span title="{1}">Ontem</span>';


Change the words "Hoje" and "Ontem" for the equivalent word in your language.

Thank you Diamante, for show how fix it.