设置 PHPMyAdmin 语言
由于某种原因,phpmyadmin 的用户界面以德语显示,我想将其更改为英语,但不知道如何更改.我安装了最新的 xampp.
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 的语言.
At the first site is a dropdown field to select the language of phpmyadmin.
在config.inc.php中你可以设置:
In the config.inc.php you can set:
$cfg['Lang'] = '';
您可以在文档中找到更多详细信息:http://www.phpmyadmin.net/documentation/一个>
More details you can find in the documentation: http://www.phpmyadmin.net/documentation/
相关文章