Look at the following little blurb:
[] // BEGIN HIVEMAIL INTEGRATION
if (($Emails) && (!$bypass)) {
if (($Privates) && (!$bypass)) { $privateslink .= " ";}
$privateslink .= "<a href="{$config['hivemail_url']}/index.php" target="_top"><img src= "{$config['images']}/newem.gif" border="0" title="{$ubbt_lang['WEL_PRIV2']} $Emails {$ubbt_lang['WEL_PRIV4']}" /></a>";
}
// END HIVEMAIL INTEGRATION
[/]
This is from the UBBThreads/Hivemail Integration, in the ubbt.inc.php file. Anyhow, the way the integration works, you get a pm-style image alert when you have new email that's not read. For Threads 6.3.x, if you tooltipped the image, it would say "You have X unread emails" where X is the number of unread mail in the inbox. I think the part that does that is the part I've just quoted above. This also worked in Spanish as well.
Now, in 6.4.x, It just says "You have X " and doesn't say "unread emails". Looking at the preceeding code snippet, I think it's this, {$ubbt_lang['WEL_PRIV4']}, that is causing the problem. Maybe this language string was removed in 6.4 and that's why I don't see the whole sentence, "You have X new emails". I've double-checked and that language string wasn't added as part of the modification, so it must have been native to threads. I'm thinking it's not there anymore.
So basicly what I need to know is in which language file would I need to add that string? I can add the string myself, I just don't know where it goes. Thanks!
