If you wish to use PiNet with languages other than English, you have a few options.
Unfortunately right now, the PiNet control panel is only available in English.
Work is though in progress to start supporting internationalisation. If you are able to help with translating the project, please sign up on the translators mailing list here.
Sometimes it is ok to just have the Raspbian operating system (chroot) available to students in your home language.
By default, the Raspbian chroot will pull the locale settings from the main Ubuntu server, but if you wish to change the locales used on Raspbian, or add multiple options, follow the instructions below.
Note - Not all software may have available localisation for your language, many still only support English.
sudo ltsp-chroot --arch armhf
to enter the Raspbian chroot.dpkg-reconfigure locales
.sudo nano /etc/lts.conf
.LDM_LANGUAGE="en_US.UTF-8"
(replacing en_US.UTF-8 with the locale you added earlier). Once finished, exit out of Nano by entering ctrl+x, y, enter.Other
followed by NBD-recompress
or enter ltsp-update-image /opt/ltsp/armhf
To add a locale to LibreOffice, follow this example for Portuguese.
sudo ltsp-chroot --arch armhf
to enter the Raspbian chroot.apt-get install -y libreoffice-l10n-pt libreoffice-help-pt
.cd /tmp
to change to temporary directory.wget http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20170615.tar.gz
to download archive.tar xvzf hunspell-pt_PT-20170615.tar.gz
to extract files from archive.cp hunspell-pt_PT-20170615/pt_PT* /usr/share/hunspell/
to copy files to correct destination.rm -r ./hunspell-pt_PT-20170615.tar.gz ./hunspell-pt_PT-20170615
to delete temorary downloaded archive and extracted directory.exit
to exit chroot environment.Other
followed by NBD-recompress
or enter ltsp-update-image /opt/ltsp/armhf