IMHO, this is not problem of the translation.
Open file:
/usr/local/ispconfig/interface/web/
dashboard/dashlets/modules.php or
/var/www/ispconfig/
dashboard/dashlets/modules.php
or where is ispconfig installation on your system.
Find this (~32 line):
Code:
if(strlen($module_title) > 8) $module_title = substr($module_title,0,7).'..';
and replace with:
Code:
if(mb_strlen($module_title, 'UTF-8') > 8) $module_title = mb_substr($module_title,0,7, 'UTF-8').'..';
Works for me!
Recent comments
10 hours 20 min ago
19 hours 48 min ago
20 hours 37 min ago
1 day 11 min ago
1 day 4 hours ago
1 day 4 hours ago
1 day 7 hours ago
1 day 17 hours ago
1 day 22 hours ago
1 day 23 hours ago