--- template: overrides/main.html --- # Changing the language Material for MkDocs supports internationalization (i18n) and provides translations for template variables and labels in 40+ languages. Additionally, search can be configured to use a language-specific stemmer (if available). ## Configuration ### Site language [:octicons-file-code-24: Source][1] · :octicons-tools-24: Default: `en` You can set the language from `mkdocs.yml` with: ``` yaml theme: language: en ``` The following languages are supported: [1]: https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/language/en.html ### Site search [:octicons-file-code-24: Source][2] · :octicons-tools-24: Default: best match for `theme.language`, automatically set Some languages, like Arabic or Japanese, need dedicated stemmers for search to work properly. Material for MkDocs relies on [lunr-languages][3] to provide this functionality. See the [search plugin documentation][4] for more information. [2]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/javascripts/integrations/search/worker/main/index.ts#L49-L69 [3]: https://github.com/MihaiValentin/lunr-languages [4]: ../plugins/search.md#language ### Directionality [:octicons-file-code-24: Source][5] · :octicons-tools-24: Default: best match for `theme.language`, automatically set While many languages are read `ltr` (left-to-right), Material for MkDocs also supports `rtl` (right-to-left) directionality which is inferred from the selected language, but can also be set with: ``` yaml theme: direction: ltr ``` :material-cursor-default-click-outline: click on a tile to change the directionality: [5]: https://github.com/squidfunk/mkdocs-material/blob/master/src/base.html#L168