更改 pgAdmin 的语言/区域设置?
刚刚在 Windows 盒子 8.3.14-1 中安装了 postgres,启动了 pgAdmin,它是我的本地语言(PT)而不是我想要的英语。
我怎样才能改变这个?
(注意:lc_messages = '英语,美国')
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')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
值得指出的是,它似乎已经更改为:
1- Open
File
> >选项
。2- 更改
用户界面
,如下图所示。3-重新启动 pgAdmin
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
如果您使用pgAdmin4,GUI/网页尚不提供更改语言的选项。您需要修改
config_local.py
文件反而。保存后重新启动pgAdmin4。
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.Restart pgAdmin4 after saving.
对于 pgAdmin4(版本 4.8):
文件>首选项>杂项>用户语言
For pgAdmin4(version 4.8) :
File > Preferences > Miscellaneous > User language
进入服务器->配置pgAdmin->杂项 ->语言
Go to Server -> Configure pgAdmin -> Miscellaneous -> Language
语言 = {
'en': '英语'
如果
更改数据库 'db_name' SET lc_messages = 'en_US.UTF-8'; // 设置你的语言
LANGUAGES = {
'en': 'English'
}
ALTER DATABASE 'db_name' SET lc_messages = 'en_US.UTF-8'; // set your language