Quote:
Originally Posted by goxy63
1.Can you please edit mod for non english languages (serbian latin and cyrillic in my case)
Nicknames with lets say these signs šđčćž dont have avatars displayed
2.Also I would like to use original title with normal date and time (06-06-09 00:17)
Thanks for awesome hack but I just cant use it if its only for english letters
|
1. It should support non-english chars. For nick display i'm using built-in vbulletin variable called $lastpostinfo[lastposter] (same var that's inside the forumhome_lastpostby template). So unless some other mod that modify this var, it should display it correctly.
Only possible language problem conflict might be the date when using time string of "F" or "M". However, that should be also covered. I'm currently using the following regexp
[a-zA-Z\xE0-\xFF]+ - as far as i know it should cover all language characters. If i'm mistaken, please provide feedback of your language range.
EDIT: i've tested some of the chars you've mentioned to the regexp, and indeed found 2 chars didnt catch by the regexp.
changing the regexp to: [a-zA-Z\x00-\xFF]+ should fix the problem. i'll upload it on v1.1.3
2.Original title already available as an option, check admincp (last option).
3. About "normal date", i'll see what i can do, perhaps i'll add it as admincp option in future version.