Topic: Solution to locale problems on Ubuntu based systems
I have FA installed on Linux Mint, and have had a lot of troubles getting FA to display anything but English. The solution is relatively simple, so I will share it here.
Description of the problem: In FA, if you go to settings and language, only Chinese locale is shown as "supported". If you tick the "show unsupported locales" and install the language pack you need (in my case Spanish), nothing changes - the text is still in English only. After much search and dabbling with the different locale files, I stumbled over the solution. What happens is that Ubuntu based systems (including Mint) default to Unicode UTF8, and the FA language packages are ISO-8859-1. So this need to be added to the supported locales in Ubuntu/Mint:
Open a terminal and write
sudo gedit /var/lib/locales/supported.d/local
The file should look something like this:
en_US.UTF-8 UTF-8
xx_XX.UTF-8 UTF-8
where xx_XX is your local language (in my case es_Ni i.e. Spanish Nicaragua).
Add the ISO.8859-1 so it looks like this
en_US.UTF-8 UTF-8
en_US.ISO-8859-1
xx_XX.UTF-8 UTF-8
xx_XX.ISO-8859-1
Save the file, reconfigure locales with:
sudo dpkg-reconfigure locales
Restart MySQL:
sudo service mysql restart
Open FA and it should now be in your selected language (supposing you have already installed the language and chosen it under "preferences").
and