1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
# Topic 2 (english version + french version)
!!! tip
**Use the language switcher in the header** to switch between the localized versions of this demo website. This switcher is part of [mkdocs-material >= 7.1.0](https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language-selector) and is **automatically configured by this plugin** or can be statically configured from the [mkdocs.yml file](https://github.com/ultrabug/mkdocs-static-i18n/blob/main/mkdocs.yml).
## What you are seeing now
This page source file and media content have been localized after applying
the [localized build logic](#localized-build-logic) described below. Here is a
quick recap of the files used as source and the generated build structure of
what you see:
```
docs
├── image.en.png <-- this image file is used on the /en version
├── image.fr.png <-- this image file is used on the /fr version
├── index.fr.md
├── index.md
├── topic1
│ ├── named_file.en.md
│ └── named_file.fr.md
└── topic2
├── index.en.md <-- this file is used for both /en and /fr versions
└── index.md
```
```
site
├── en
│ ├── image.png <-- you see this image on the /en version
│ ├── index.html
│ ├── topic1
│ │ └── named_file
│ │ └── index.html
│ └── topic2
│ └── index.html <-- you are here on the /en version
├── fr
│ ├── image.png <-- you see this image on the /fr version
│ ├── index.html
│ ├── topic1
│ │ └── named_file
│ │ └── index.html
│ └── topic2
│ └── index.html <-- you are here on the /fr version
├── image.png
├── index.html
├── topic1
│ └── named_file
│ └── index.html
└── topic2
└── index.html
```
## Automatic media / link / asset localization

This image source is dynamically localized while still being referenced in the
markdown source of the page as ``. This means that
this plugin allows you to not worry about links, media and static content file
names, just use their simple name and concentrate on your content translation!
---
## Localized build logic
The settings used to build this site is:
```
plugins:
- i18n:
default_language: en
languages:
en: english
fr: français
```
Meaning that we will get three versions of our website:
1. the `default_language` version which will use any `.md` documentation file first and fallback to any `.en.md` file found since `en` is the default language
2. the `/en` language version which will use any `.en.md` documentation file first and fallback to any `.md` file found
3. the `/fr` language version which will use any `.fr.md` documentation file first and fallback to either `.en.md` file (default language) or `.md` file (default language fallback) whichever comes first
Given that logic, the following `site` structure is built:
```
site
├── 404.html
├── assets
│ ├── images
│ ├── javascripts
│ └── stylesheets
├── en
│ ├── image.png
│ ├── index.html
│ ├── topic1
│ │ └── named_file
│ │ └── index.html
│ └── topic2
│ └── index.html
├── fr
│ ├── image.png
│ ├── index.html
│ ├── topic1
│ │ └── named_file
│ │ └── index.html
│ └── topic2
│ └── index.html
├── image.png
├── index.html
├── topic1
│ └── named_file
│ └── index.html
└── topic2
└── index.html
```
|