3: Unrecognized character encoding

This error message has been obsolete since version 30 of the Aneamal Translator. Please update to the current version.

Legacy information

You declared a character encoding using @charset. However, your PHP distribution does not know this character encoding.

Solution

Many character encodings are known under various aliases. For example, ISO-8859-1 is also known as Latin1. Hence you could check whether you can work with the same encoding under a different name. If your desired encoding is not supported by your PHP distribution, you could use a different character encoding. To get a list of character encodings which are supported by your PHP distribution, upload a text file encodings.php containing nothing but the following line and open the file from your browser:

<?php echo implode (', ', mb_list_encodings ());

UTF-8 is highly recommended. Aneamal only works with ASCII compatible encodings.