Topic: for supporting different language structure...
Hello, first of all I appreciate your work - punbb. I like it. and have tested in my computer.
I tried to make a Korean translation and found it may be differcult for the language structure. for instance, we can see the same code like this:
$perms = $lang_index['You'].' <b>'.$lang_index['can'].'</b> '.$lang_index['post replies'].'<br>'....
but Korean language structure is a little different from english and some other languages which have the same structure. As to Korean style 'can' or 'cannot' should be the last word. I think it will be not just a Korean problem, it'll be also other language problem.
So, the best method when we support other language more perfect, it should be like a sentence. so In my opinion the upper code should be
$perms = $lang_index['can_post_replies'].'<br>'...
Could you consider this problem and make a little change for this?:)