红联Linux门户
Linux帮助

Xubuntu 16.04更换语言后的"在这里打开终端"选项语言保持不变

发布时间:2016-10-07 09:28:29来源:Segmentfault作者:iMichael_Zhang
在安装Xubuntu16.04时,使用的简体中文,是为了方便安装搜狗输入法,但是安装完,设置系统语言为英文后,鼠标右击桌面时发现"在这里打开终端"以及"在当前文件夹查找"语言还是中文.虽然不影响使用,但是看起来还是很别扭.今天终于解决了个小问题了.
 
解决方案
1.切换到 /home/yourname/.config/Thunar/ 文件夹
2.下面有两个文件 accels.scm, uca.xml
3.双击 uca.xml 进行编辑,修改相应的 <name> 标签
4.然后注销再登录就可以啦
<?xml encoding="UTF-8" version="1.0"?>
<actions>
<action>
<icon>Terminal</icon>
<name>Open Terminal Here</name>
<unique-id>1469811199170788-1</unique-id>
<command>exo-open --working-directory %f --launch TerminalEmulator</command>
<description>自定义操作的示例</description>
<patterns>*</patterns>
<directories/>
</action>
<action>
<icon>filefind</icon>
<name>Find in the Current Folder</name>
<unique-id>1469811199170878-2</unique-id>
<command>catfish --path=%f</command>
<description>搜索当前文件夹下的文件</description>
<patterns>*</patterns>
<directories/>
</action>
</actions>
 
本文永久更新地址:http://www.linuxdiyf.com/linux/24805.html