Created
July 8, 2019 13:36
-
-
Save YcSmile/039024e79b9d7dca38e80fdca7890620 to your computer and use it in GitHub Desktop.
Linux 英文系统下,切换wps界面语言为中文
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
当前wps版本 11.1.0.8722 | |
1 方法一 | |
修改配置文件 | |
nano ~/.config/Kingsoft/Office.conf | |
将 | |
[General] | |
languages= | |
PersistentStatus=0 | |
修改为 | |
[General] | |
languages=zh_CN | |
PersistentStatus=0 | |
2 方法二 | |
修改启动文件(wps et wpp wpspdf) 以wps word为例 | |
sudo nano `which wps` | |
#!/bin/bash | |
LANGUAGE=zh_CN # 添加环境变量 | |
gOpt= | |
#gOptExt=-multiply |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
在系统设置为英文的fedora linux/gnome desktop下,WPS 12.1.0.17900使用此方法成功。建议大家使用上述方法,而不是修改/usr/bin/{wps,et,wpp},前者相对更干净一些。