dkaz
(dkaz)
August 26, 2026, 7:52am
1
NethServer Version: 8
Module: Nextcloud 1.7.4 and Collabora 1.1.6
Hi,
Iam trying to add support for Swedish language and spellchecking i Nextcloud and Collabora.
As I understand it its not possible without modifying the Collabora systemd --user script but i cant get it to work and cant find any good HOWTOs.
How do I install language support inside the container?
Do I need to install an rpm?
How do I enable Swedish grammar and spellchecking?
Thanks all!
//Dkaz
mrmarkuz
(Markus Neuberger)
August 26, 2026, 12:31pm
2
Hi and welcome to NethServer Community,
you’re right, the language needs to be added to the service file. (see for example SOGo new features: configuration template and access/configure button - #33 by mrmarkuz )
Add a systemd override: (replace collabora1 with your collabora instance name)
runagent -m collabora1 systemctl --user edit collabora
Add the following between the comments and save the file:
### Editing /home/collabora1/.config/systemd/user/collabora.service.d/override.conf
### Anything between here and the comment below will become the new contents of the file
[Service]
ExecStart=
ExecStart=/usr/bin/podman run --conmon-pidfile %t/collabora.pid \
--cidfile %t/collabora.ctr-id --cgroups=no-conmon \
--replace -d --name collabora --cap-add MKNOD \
--network=slirp4netns \
--env aliasgroup2=https://${TRAEFIK_HOST}:443 \
--env username=admin \
--env-file=%E/state/password.env \
--env "extra_params=--o:ssl.enable=false --o:ssl.termination=true --o:security.capabilities=false" \
--env dictionaries="de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru sv_SE" \
--publish 127.0.0.1:${TCP_PORT}:9980 \
${CODE_IMAGE}
### Lines below this comment will be discarded
Restart the collabora service:
runagent -m collabora1 systemctl --user restart collabora
Now the Swedish language should be available in Collabora.
dkaz
(dkaz)
August 27, 2026, 5:28am
3
Works perfectly if you remember to add [Service] as well … I had missed it
Thanks for fast and exact support!