Hi!
We’ve installed Document Server and connected it to Nextcloud. This is working fine.
I’m now trying to change the default language of the Document Server interface to Dutch.
I’ve found this article and edited …/web-apps/apps/api/documents/api.js with the following changes:
editorConfig: {
“…”
}
},
lang: ‘nl’,
mode: ‘view or edit’,
location: ‘nl-NL’,
and
DocsAPI.DocEditor.defaultConfig = {
type: 'desktop',
width: '100%',
height: '100%',
editorConfig: {
lang: 'nl',
canCoAuthoring: true,
customization: {
about: true,
feedback: false
}
}
};
Unfortunately, after saving the changes and running supervisorctl restart all, documents still open in English.
I’m probably missing something obvious but I can’t seem to figure it out.
Could someone please point me in the right direction? Thanks in advance!