language
configuration option. This will pull the corresponding language file from the i18n
directory in Lock.
Language | Code | Source |
---|---|---|
Afrikaans | ’af’ | af.js |
Catalan | ’ca’ | ca.js |
Chinese | ’zh’ | zh.js |
Chinese (Taiwan) | ‘zh-tw’ | zh-tw.js |
Croatian | ’hr’ | hr.js |
Czech | ’cs’ | cs.js |
Danish | ’da’ | da.js |
Dutch | ’nl’ | nl.js |
English | ’en’ | en.js |
Estonian | ’et’ | et.js |
Farsi (Persian) | ‘fa’ | fa.js |
Finnish | ’fi’ | fi.js |
French | ’fr’ | fr.js |
German | ’de’ | de.js |
Greek | ’el | el.js |
Hebrew | ’he’ | he.js |
Hungarian | ’hu’ | hu.js |
Italian | ’it’ | it.js |
Japanese | ’ja’ | ja.js |
Korean | ’ko’ | ko.js |
Lithuanian | ’lt’ | lt.js |
Norwegian | ’no’ | no.js |
Norwegian (Bokmål) | ‘nb’ | nb.js |
Norwegian (Nynorsk) | ‘nn’ | nn.js |
Polish | ’pl’ | pl.js |
Portuguese (Brazil) | ‘pt-br’ | pt-br.js |
Romanian | ’ro’ | ro.js |
Russian | ’ru’ | ru.js |
Slovak | ’sk’ | sk.js |
Slovenian | ’sl’ | sl.js |
Spanish | ’es’ | es.js |
Swedish | ’sv’ | sv.js |
Turkish | ’tr’ | tr.js |
Ukrainian | ’ua’ | ua.js |
Vietnamese | ’vi’ | vi.js |
<script src="https://cdn.auth0.com/js/lock/11.14/lock.min.js"></script>
Next define your options
object and include the language
option. The language
option needs to be a string matching the name of the corresponding file in the i18n
directory within Lock. Then instantiate Lock.
language does not have property <missing prop>
. We encourage you to submit a pull request to add these missing values. Alternatively, you may define the missing values in your Lock options
(see below).
languageDictionary
option. This is useful if you are using one of the supported languages, but change the specific wording of a few items. For example, you might re-word the title
or change the way other labels display to the user while leaving the remaining text on the widget intact.
languageDictionary
property names and how to structure a language
file, see the English dictionary file for Lock.
The languageBaseUrl
option, which takes a string value (a URL), overrides the language source URL for Auth0’s provided translations. By default, it uses the Auth0’s CDN URL https://cdn.auth0.com
because that is where the provided language translations are stored. By providing another value, you can use your own source for the language translations as needed for your applications. Your language source should be a JavaScript file.