The PHP function ucwords only works for single-byte encoded text. It mangles e.g. the first chinese character in "中文 / Chinese".
Therefore I recommend replacing ucwords($Name) with mb_convert_case($Name, MB_CASE_TITLE, "UTF-8") in class.multilingual.plugin.php in line 57.