WPS: mudanças entre as edições
De MochilaWiki
Ir para navegaçãoIr para pesquisar
Criou página com '* http://wps-community.org/ == Instalando fontes para símbolos == <source lang="bash"> cd /tmp git clone https://github.com/iamdh4/ttf-wps-fonts.git cd ttf-wps-fonts sudo...' |
|||
| (4 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
| Linha 1: | Linha 1: | ||
* http://wps-community.org/ | * http://wps-community.org/ | ||
== Instalando == | |||
<source lang="bash"> | |||
apt install xdg-utils fontconfig | |||
wget http://kdl.cc.ksosoft.com/wps-community/download/6758/wps-office_10.1.0.6758_amd64.deb | |||
dpkg -i wps-office_10.1.0.6758_amd64.deb | |||
</source> | |||
Ou versão mais recente em http://wps-community.org/downloads | |||
== Instalando fontes para símbolos == | == Instalando fontes para símbolos == | ||
| Linha 13: | Linha 23: | ||
Fonte: https://github.com/IamDH4/ttf-wps-fonts | Fonte: https://github.com/IamDH4/ttf-wps-fonts | ||
== Instalando corretor ortográfico == | |||
<source lang="bash"> | |||
wget http://wps-community.org/download/dicts/pt_BR.zip | |||
sudo unzip pt_BR.zip -d /opt/kingsoft/wps-office/office6/dicts/spellcheck/ | |||
</source> | |||
Depois vá em Aba Revisar -> Corretor Ortográfico -> Definir Idioma(C)… -> Português Brasil: | |||
Fonte: https://4fasters.com.br/2017/12/05/alterar-idioma-e-corretor-ortografico-do-wps-office-para-pt-br/ | |||
== Instalando Tradução de Interface == | |||
<source lang="bash"> | |||
sudo apt-get install qt4-dev-tools | |||
git clone https://github.com/wps-community/wps_i18n.git | |||
cd wps_i18n/pt_BR | |||
make install | |||
sudo make install | |||
</source> | |||
Fonte: https://github.com/wps-community/wps_i18n | |||
Edição atual tal como às 10h36min de 16 de abril de 2019
Instalando
apt install xdg-utils fontconfig
wget http://kdl.cc.ksosoft.com/wps-community/download/6758/wps-office_10.1.0.6758_amd64.deb
dpkg -i wps-office_10.1.0.6758_amd64.deb
Ou versão mais recente em http://wps-community.org/downloads
Instalando fontes para símbolos
cd /tmp
git clone https://github.com/iamdh4/ttf-wps-fonts.git
cd ttf-wps-fonts
sudo bash install.sh
rm -rf /tmp/ttf-wps-fonts
Fonte: https://github.com/IamDH4/ttf-wps-fonts
Instalando corretor ortográfico
wget http://wps-community.org/download/dicts/pt_BR.zip
sudo unzip pt_BR.zip -d /opt/kingsoft/wps-office/office6/dicts/spellcheck/
Depois vá em Aba Revisar -> Corretor Ortográfico -> Definir Idioma(C)… -> Português Brasil:
Fonte: https://4fasters.com.br/2017/12/05/alterar-idioma-e-corretor-ortografico-do-wps-office-para-pt-br/
Instalando Tradução de Interface
sudo apt-get install qt4-dev-tools
git clone https://github.com/wps-community/wps_i18n.git
cd wps_i18n/pt_BR
make install
sudo make install