Just installed postgres in a windows box, 8.3.14开发者_开发问答-1, started up pgAdmin and it is in my local language (PT) instead of english like I wanted.
How can I change this?
(Note that: lc_messages = 'English, United States')
Worth pointing out that it seems it has since changed to:
1- Open File
> Options
.
2- Change User Interface
as in the image below.
3- Restart pgAdmin
- Open pgadmin.
- File > Options
- Change 'user language'
If you are using pgAdmin4, the GUI / web page does not provide an option to change language yet. You need to modify the config_local.py
file instead.
# add this to `config_local.py` to force English, by removing other languages.
LANGUAGES = {'en': 'English'}
Restart pgAdmin4 after saving.
For pgAdmin4(version 4.8) : File > Preferences > Miscellaneous > User language
Go to Server -> Configure pgAdmin -> Miscellaneous -> Language
精彩评论