问题
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')
回答1:
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

回答2:
- Open pgadmin.
- File > Options
- Change 'user language'
回答3:
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.
回答4:
For pgAdmin4(version 4.8) : File > Preferences > Miscellaneous > User language
回答5:
Go to Server -> Configure pgAdmin -> Miscellaneous -> Language
来源:https://stackoverflow.com/questions/5555497/change-language-locale-of-pgadmin