mysql errors being presented in French

2

All errors I receive regarding phpmyadmin database are in French. However, the panel is in pt-br, only query errors - a select for example - are displayed in French. I use WAMP.

EX: Aucune base n'a �t� s�lectionn�e

    
asked by anonymous 06.01.2016 / 20:05

2 answers

3

To change the language that MySQL uses you should change a setting in the file: "my.ini"

Look for this line:

# Change your locale here !
lc-messages=

Your should probably be set up this way

# Change your locale here !
lc-messages=fr_FR

Switch to "en-us". I do not remember if "en" is available. After saving the file you must restart the MySQL services by Wamp.

    
06.01.2016 / 20:34
2

Click the Wamp icon, and then click MySQL and my.ini

Open this file with notepad, give CTRL + F and search for:

lc-messages=fr_FR

Comment this line with # and replace with:

 lc-messages=pt_BR

Restart WAMP and you're done.

    
06.01.2016 / 20:42