php 设置 PHPMyAdmin 语言
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/7528972/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Setting PHPMyAdmin Language
提问by Mahie
The user interface for phpmyadmin is displayed in german for some reason and i'd like to change it to english but don't know how. I installed the latest xampp.
由于某种原因,phpmyadmin 的用户界面以德语显示,我想将其更改为英语,但不知道如何更改。我安装了最新的xampp。
Thanks
谢谢
采纳答案by Scoutman
At the first site is a dropdown field to select the language of phpmyadmin.
第一个站点是一个下拉字段,用于选择 phpmyadmin 的语言。
In the config.inc.php you can set:
在 config.inc.php 你可以设置:
$cfg['Lang'] = '';
More details you can find in the documentation: http://www.phpmyadmin.net/documentation/
您可以在文档中找到更多详细信息:http: //www.phpmyadmin.net/documentation/
回答by phihag
In config.inc.php
in the top-level directory, set
在config.inc.php
顶级目录中,设置
$cfg['DefaultLang'] = 'en-utf-8'; // Language if no other language is recognized
// or
$cfg['Lang'] = 'en-utf-8'; // Force this language for all users
If Lang
isn't set, you should be able to select the language in the initial welcome screen, and the language your browser prefers should be preselected there.
如果Lang
未设置,您应该能够在初始欢迎屏幕中选择语言,并且应该在那里预先选择您的浏览器喜欢的语言。
回答by oezi
sounds like you downloaded the german xampp packageinstead of the english xampp package(yes, it's another download-link) where the language is set according to the package you loaded. to change the language afterwards, simply edit the config.inc.php
and set:
听起来您下载的是德语 xampp 包而不是英语 xampp 包(是的,这是另一个下载链接),其中语言是根据您加载的包设置的。之后更改语言,只需编辑config.inc.php
并设置:
$cfg['Lang'] = 'en-utf-8';