回到首页
订阅Luke瞎折腾
找资源前务必先看这里!!
Blogger技巧
免费空间推荐
Luke的网络收藏夹
Luke的网络硬盘
控制台
新建日志

2009/07/27

解决Ubuntu下Flash内的中文乱码问题

字体大小:| |
在上篇文章中,Luke已经基本搞定了在Ubuntu下Firefox看不了土豆视频和某些Flash的问题,这次要搞定的就是上次的遗留问题——Flash中的中文显示为乱码。


(从上图的左上角和右下角可以看出中文已经正确显示了。)

首先打开终端,定位到管理字体文件所在的文件夹——输入:
cd /etc/fonts/conf.d/

然后对49-sansserif.conf这个文件进行编辑——输入:
sudo gedit 49-sansserif.conf

将下面文本中的红色部分改为“sans”
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>sans-serif</string>
</edit>
</match>

即:
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>sans</string>
</edit>
</match>

最后保存一下,重启下浏览器,Flash中的中文就能正常显示了:)



-------------------------------------------------------------------------------------
以上图片和文字均为原创,转载请注明转自Luke瞎折腾


收藏本文
相关文章:

0 评论:

发表评论

有问题请留言,Luke帮你解决。问了方便回答,请尽量不要匿名。