ooguz / mailcow-dockerized-docs

mailcow: dockerized - documentation πŸ“°

Home Page:https://docs.mailcow.email

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mailcow-docs-2.0 | pages-build-deployment

The rework of the official mailcow docs

Introduction:

The new 2.0 version of the mailcow documentation has been redesigned from scratch based on the original.

Advantages compared to the 1.0 version:

  • Full translation support (English and German are officially supported by Servercow/tinc).
  • New folder structure for better overview/ordering of sub-pages.

Due to the fact that this version now has some serious changes compared to the 1.0 version, all pending merge requests are no longer compatible with this version.


About contributions:

The documentation lives (just like the actual mailcow project) from community contributions.

Of course, we will also make our contributions to the documentation, but especially the new translation support naturally brings some scope for multiple community supported languages.

To contribute new pages/translations simply clone the repository and then work with your cloned repository. Once you are done with your work start a pull request, if approved this will then be implemented into the actual documentation.


How to add new translations:

So you want to provide a new translation for the documentation? Great, thanks for that <3

There are a few things to keep in mind, which are essential for a smooth process:

Add the new Language to the Language selector:

As a start for possible translations, the language must first be added to the language selection. To add it, edit the mkdocs.yml file and add the language in the "translations" section (under the already existing languages):

[...]
  - i18n: # <--- Translation plugin
      default_language: en
      languages:
        en: English
        de: Deutsch
        [...] <--- Add the languages here.
[...]

The new language will now appear in the language selector once the mkdocs are rebuilt (see Testing).

The i18n plugin for mkdocs (see here is used for our documentation, so the standard notations of the plugin apply (see here) i.e. each language of a page will be a separate .md file which is composed of the filename.languagecode.md.

The filenames must remain the same for the other languages, only the country code in front of the .md extension is set to the desired language.

If a page does NOT exist in a language, the English version of the page will be used by default, because English is set as default_language in mkdocs.yml.

Images can also be "translated"! These are distinguished (similar to the pages) by the country codes.

Translate the menu:

The menu is NOT translated by default and must be translated by hand, this is also done in the mkdocs.yml:

[...]
- i18n: # <--- Translation plugin
      default_language: en
      languages:
        en: English
        de: Deutsch
      nav_translations:
      #### Begin of german translation
        de: #<--- Language code here
          'Information & Support': 'Informationen & Support'
          ### Prerequisites Section
          'Prerequisites': 'Voraussetzungen'
          'Prepare your system': 'Systemvoraussetzungen'
          'DNS setup': 'DNS Einstellungen'
[...]          

The preceding English variant MUST be kept, otherwise the translation will not work.


Folder structure:

docs <-- Root Folder
β”œβ”€β”€ assets
β”‚   └── images <-- Folder where the images are located (sorted by main chapter)
β”‚       β”œβ”€ topic1
|       β”‚   β”œβ”€β”€ image.en.png
|       β”‚   β”œβ”€β”€ image.de.png
|       β”‚   β”œβ”€β”€ image.XX.png
|       β”œβ”€ topic2
|       β”‚   β”œβ”€β”€ image.en.png
|       β”‚   β”œβ”€β”€ image.de.png
|       β”‚   β”œβ”€β”€ image.XX.png
|       β”œβ”€ topicX
|           β”œβ”€β”€ image.en.png
|           β”œβ”€β”€ image.de.png
|           β”œβ”€β”€ image.XX.png
| 
β”œβ”€β”€ topic1 <-- Folder where the documentation sites are located (sorted by main chapter)
β”‚    β”œβ”€β”€ file.en.md
|    β”œβ”€β”€ file.de.md
β”‚    β”œβ”€β”€ file.XX.md
| 
β”œβ”€β”€ topic2
β”‚    β”œβ”€β”€ subtopic1 <-- Some Chapters are divided into multiple subtopics 
|    |    β”œβ”€β”€ file.en.md
|    |    β”œβ”€β”€ file.de.md
|    |    β”œβ”€β”€ file.XX.md
β”‚    β”œβ”€β”€ subtopicX
|         β”œβ”€β”€ file.en.md
|         β”œβ”€β”€ file.de.md
|         β”œβ”€β”€ file.XX.md
| 
β”œβ”€β”€ topicX
β”‚    β”œβ”€β”€ file.en.md
|    β”œβ”€β”€ file.de.md
β”‚    β”œβ”€β”€ file.XX.md

Testing

To build and test it locally, you need the Material theme for MkDocs, MkDocs itself and Pygments. To install these with pip and get it up and running, fire up your terminal and enter

git clone https://github.com/mailcow/mailcow-dockerized-docs.git
pip install -r requirements.txt
mkdocs serve

The Placeholder values get replaced by the javascript in the file docs/assets/javascript/client.js.

If you want to test how the documentation looks like with the placeholder values filled in, you can set the values via url parameters.

For Example:

http://127.0.0.1:8000/client/client-manual/#host=mail.test.org&email=mail@example.org&name=mail&ui=mail.example.org&port=443

About

mailcow: dockerized - documentation πŸ“°

https://docs.mailcow.email


Languages

Language:HTML 100.0%