更改 pgAdmin 的语言/区域设置?

发布于 2024-10-30 17:14:15 字数 134 浏览 0 评论 0原文

刚刚在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

但可醉心 2024-11-06 17:14:15

值得指出的是,它似乎已经更改为:

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

enter image description here

清旖 2024-11-06 17:14:15
  1. 打开 pgadmin.
  2. 文件>选项
  3. 更改“用户语言”
  1. Open pgadmin.
  2. File > Options
  3. Change 'user language'
绝影如岚 2024-11-06 17:14:15

如果您使用pgAdmin4,GUI/网页尚不提供更改语言的选项。您需要修改config_local.py文件反而。

# add this to `config_local.py` to force English, by removing other languages.
LANGUAGES = {'en': 'English'}

保存后重新启动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.

# add this to `config_local.py` to force English, by removing other languages.
LANGUAGES = {'en': 'English'}

Restart pgAdmin4 after saving.

梦里梦着梦中梦 2024-11-06 17:14:15

对于 pgAdmin4(版本 4.8):
文件>首选项>杂项>用户语言

For pgAdmin4(version 4.8) :
File > Preferences > Miscellaneous > User language

旧城空念 2024-11-06 17:14:15

进入服务器->配置pgAdmin->杂项 ->语言
输入图片此处描述

Go to Server -> Configure pgAdmin -> Miscellaneous -> Language
enter image description here

瑾夏年华 2024-11-06 17:14:15
  1. 如果要更改界面语言: 文件 - 首选项 - 用户语言
  2. 如果要更改消息语言:
  • 打开文件 \Program Files\PostgreSQL\16\pgAdmin 4\web\config.py
  • 编辑“我们支持的语言”部分UI”并设置必要的语言,如下所示:
    语言 = {
    'en': '英语'
    如果
  1. 你想更改错误语言:
    更改数据库 'db_name' SET lc_messages = 'en_US.UTF-8'; // 设置你的语言
  1. If you want to change the interface language : File - Preferences - User Language
  2. If you want to change the messages language:
  • Open file \Program Files\PostgreSQL\16\pgAdmin 4\web\config.py
  • Edit part "Languages we support in the UI" and set necessary language like that:
    LANGUAGES = {
    'en': 'English'
    }
  1. If you want to change the error language:
    ALTER DATABASE 'db_name' SET lc_messages = 'en_US.UTF-8'; // set your language
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文