在 Debian 系统下,把 FileZilla 设置为中文一般有以下几种情况,按常见程度说明:
Debian 默认可能只装了英文界面。
sudo apt update
sudo apt install filezilla filezilla-common
filezilla-common 通常已包含多语言包(含中文)。
说明系统缺少中文 locale 或语言包。
sudo apt install locales
sudo dpkg-reconfigure locales
zh_CN.UTF-8zh_CN.GBK(可选)zh_CN.UTF-8(也可保持 en_US)ls /usr/share/locale/zh_CN/LC_MESSAGES/ | grep filezilla
有 filezilla.mo 即正常。
LANG=zh_CN.UTF-8 filezilla
sudo apt install language-pack-zh-hans
如果你告诉我:
我可以给你更精确的步骤。