Skip to content
Snippets Groups Projects
Commit 66a63451 authored by Jessie Keck's avatar Jessie Keck Committed by Chris Beer
Browse files

Add section about updating settings.js when adding a new language

parent 26ca45e2
No related branches found
No related tags found
No related merge requests found
......@@ -44,3 +44,17 @@ Would look like this in French.
Strings contained in double curly braces `{{}}` should not be changed.
The [`i18n.js`](../i18n.js) file should also be updated for the new language.
Lastly, you'll want to add the new locale and native language to the `availableLanguages` section in the [settings file](/src/config/settings.js).
```javascript
// src/config/settings.js
...
availableLanguages: {
de: 'Deutsch',
en: 'English',
fr: 'Français',
...
```
This will add the new language to the Language selection drop down as well as allow Mirador implementers to opt-out of including the language in their installation.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment