Hi all, just want to bring to the attention of the devs that some changed to the templates are required for international setup. I am currently setting up kunena in 5 languages (inc english), so some bugs have shown up. Very simple to fix but annoying if your running a non latin lang based site. The following 3 things need to be modifed in order for pages not to show up incorrectly where the table heading becomes elongated due to '%' used in page layout. To better illustrate my point -->
These things will make the pages appear correctly, as the words 'hits' and 'replies' in english will stretch the table to fit the whole word on one line, in japanese for example hits consists of 3 characters which will separate vertically.
listcat.php needs to be modified here,
Code:
changed line 208: <th class = "th-3 <?php echo $boardclass; ?>sectiontableheader" align="left" width="9%"><?php echo _GEN_TOPICS; ?></th>
changed line 209: <th class = "th-4 <?php echo $boardclass; ?>sectiontableheader" align="left" width="7%"><?php echo _GEN_REPLIES; ?></th>
changed line 210: <th class = "th-5 <?php echo $boardclass; ?>sectiontableheader" align="left" width="25%"><?php echo _GEN_LAST_POST; ?></th>
flat.php needs to be modified here,
Code:
changed line 130: <th class = "th-0 <?php echo $boardclass ?>sectiontableheader" width="5%" align="center"><?php echo _GEN_REPLIES; ?></th>
to --> <th class = "th-0 <?php echo $boardclass ?>sectiontableheader" width="50" align="center"><?php echo _GEN_REPLIES; ?></th>
default/plugin/fbprofile/forummsg.php
Code:
changed line 50: <th class = "th-3 <?php echo $boardclass ;?>sectiontableheader" align="left" width="30%"><?php echo _KUNENA_USERPROFILE_CATEGORIES; ?>
to --> <th class = "th-3 <?php echo $boardclass ;?>sectiontableheader" align="left" width="24%"><?php echo _KUNENA_USERPROFILE_CATEGORIES; ?>
changed line 53: <th class = "th-4 <?php echo $boardclass ;?>sectiontableheader" align="center" width="5%"><?php echo _KUNENA_USERPROFILE_HITS; ?>
to --> <th class = "th-4 <?php echo $boardclass ;?>sectiontableheader" align="center" width="10%"><?php echo _KUNENA_USERPROFILE_HITS; ?>
Cheers all, keep up the good work
Awesome product !