### Your task
Translate an English original content to a target language.
The original content is written in Markdown, write the translation in Markdown as well.
The original content will be surrounded by triple percentage signs (%%%). Do not include the triple percentage signs in the translation.
### Technical terms in English
For technical terms in English that don't have a common translation term, use the original term in English.
### Content of code snippets
Do not translate the content of code snippets, keep the original in English. For example, `list`, `dict`, keep them as is.
### Content of code blocks
Do not translate the content of code blocks, except for comments in the language which the code block uses.
Examples:
Source (English) - The code block is a bash code example with one comment:
```bash
# Print greeting
echo "Hello, World!"
```
Result (German):
```bash
# Gruß ausgeben
echo "Hello, World!"
```
Source (English) - The code block is a console example containing HTML tags. No comments, so nothing to change here:
```console
$ fastapi run main.py
FastAPI Starting server
Searching for package file structure
```
Result (German):
```console
$ fastapi run main.py
FastAPI Starting server
Searching for package file structure
```
Source (English) - The code block is a console example containing 5 comments:
```console
// Go to the home directory
$ cd
// Create a directory for all your code projects
$ mkdir code
// Enter into that code directory
$ cd code
// Create a directory for this project
$ mkdir awesome-project
// Enter into that project directory
$ cd awesome-project
```
Result (German):
```console
// Gehe zum Home-Verzeichnis
$ cd
// Erstelle ein Verzeichnis für alle Ihre Code-Projekte
$ mkdir code
// Gehe in dieses Code-Verzeichnis
$ cd code
// Erstelle ein Verzeichnis für dieses Projekt
$ mkdir awesome-project
// Gehe in dieses Projektverzeichnis
$ cd awesome-project
```
If there is an existing translation and its Mermaid diagram is in sync with the Mermaid diagram in the English source, except a few translated words, then use the Mermaid diagram of the existing translation. The human editor of the translation translated these words in the Mermaid diagram. Keep these translations, do not revert them back to the English source.
Example:
Source (English):
```mermaid
flowchart LR
subgraph global[global env]
harry-1[harry v1]
end
subgraph stone-project[philosophers-stone project]
stone(philosophers-stone) -->|requires| harry-1
end
```
Existing translation (German) - has three translations:
```mermaid
flowchart LR
subgraph global[globale Umgebung]
harry-1[harry v1]
end
subgraph stone-project[philosophers-stone-Projekt]
stone(philosophers-stone) -->|benötigt| harry-1
end
```
Result (German) - you change nothing:
```mermaid
flowchart LR
subgraph global[globale Umgebung]
harry-1[harry v1]
end
subgraph stone-project[philosophers-stone-Projekt]
stone(philosophers-stone) -->|benötigt| harry-1
end
```
### Special blocks
There are special blocks of notes, tips and others that look like:
/// note
Here goes a note
///
To translate it, keep the same line and add the translation after a vertical bar.
For example, if you were translating to Spanish, you would write:
/// note | Nota
Some examples in Spanish:
Source (English):
/// tip
Result (Spanish):
/// tip | Consejo
Source (English):
/// details | Preview
Result (Spanish):
/// details | Vista previa
### Tab blocks
There are special blocks surrounded by four slashes (////). They mark text, which will be rendered as part of a tab in the final document. The scheme is:
//// tab | {tab title}
{tab content, may span many lines}
////
Keep everything before the vertical bar (|) as is, including the vertical bar. Translate the tab title. Translate the tab content, applying the rules you know. Keep the four block closing slashes as is.
Examples:
Source (English):
//// tab | Python 3.8+ non-Annotated
Hello
////
Result (German):
//// tab | Python 3.8+ nicht annotiert
Hallo
////
Source (English) - Here there is nothing to translate in the tab title:
//// tab | Linux, macOS, Windows Bash
Hello again
////
Result (German):
//// tab | Linux, macOS, Windows Bash
Hallo wieder
////
### Headings
Every Markdown heading in the English text (all levels) ends with a part inside curly brackets. This part denotes the hash of this heading, which is used in links to this heading. In translations, translate the heading, but do not translate this hash part, so that links do not break.
Examples of how to translate a heading:
Source (English):
```
## Alternative API docs { #alternative-api-docs }
```
Result (Spanish):
```
## Documentación de la API alternativa { #alternative-api-docs }
```
Source (English):
```
### Example { #example }
```
Result (German):
```
### Beispiel { #example }
```
### Links
Use the following rules for links (apply both to Markdown-style links ([text](url)) and to HTML-style text tags):
- For relative URLs, only translate the link text. Do not translate the URL or its parts.
Example:
Source (English):
```
[One of the fastest Python frameworks available](#performance)
```
Result (German):
```
[Eines der schnellsten verfügbaren Python-Frameworks](#performance)
```
- For absolute URLs which DO NOT start EXACTLY with https://fastapi.tiangolo.com, only translate the link text and leave the URL unchanged.
Example:
Source (English):
```
SQLModel docs
```
Result (German):
```
SQLModel-Dokumentation
```
- For absolute URLs which DO start EXACTLY with https://fastapi.tiangolo.com, only translate the link text and change the URL by adding the language code (https://fastapi.tiangolo.com/{language_code}[rest part of the url]).
Example:
Source (English):
```
Documentation
```
Result (Spanish):
```
Documentación
```
- Do not add language codes for URLs that point to static assets (e.g., images, CSS, JavaScript).
Example:
Source (English):
```
Something
```
Result (Spanish):
```
Algo
```
- For internal links, only translate link text.
Example:
Source (English):
```
[Create Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}
```
Result (German):
```
[Pull Requests erzeugen](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}
```
- Do not translate anchor fragments in links (the part after `#`), as they must remain the same to work correctly.
- If an existing translation has a link with an anchor fragment different to the anchor fragment in the English source, then this is an error. Fix this by using the anchor fragment of the English source.
Example:
Source (English):
```
[Body - Multiple Parameters: Singular values in body](body-multiple-params.md#singular-values-in-body){.internal-link target=_blank}
```
Existing wrong translation (German) - notice the wrongly translated anchor fragment:
```
[Body - Mehrere Parameter: Einfache Werte im Body](body-multiple-params.md#einzelne-werte-im-body){.internal-link target=_blank}.
```
Result (German) - you fix the anchor fragment:
```
[Body - Mehrere Parameter: Einfache Werte im Body](body-multiple-params.md#singular-values-in-body){.internal-link target=_blank}.
```
- Do not add anchor fragments at will, even if this makes sense. If the English source has no anchor, don't add one.
Example:
Source (English):
```
Create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}
```
Wrong translation in German - Anchor added to the URL.
```
Erstelle eine [virtuelle Umgebung](../virtual-environments.md#create-a-virtual-environment){.internal-link target=_blank}
```
Good translation (German) - URL stays like in the English source.
```
Erstelle eine [Virtuelle Umgebung](../virtual-environments.md){.internal-link target=_blank}
```
### HTML abbr elements
Translate HTML abbr elements (`text`) as follows:
- If the text surrounded by the abbr element is an abbreviation (the text may be surrounded by further HTML or Markdown markup or quotes, for example text or `text` or "text", ignore that further markup when deciding if the text is an abbreviation), and if the description (the text inside the title attribute) contains the full phrase for this abbreviation, then append a dash (-) to the full phrase, followed by the translation of the full phrase.
Conversion scheme:
Source (English):
```
{abbreviation}
```
Result:
```
{abbreviation}
```
Examples:
Source (English):
```
IoT
CPU
TL;DR:
```
Result (German):
```
IoT
CPU
TL;DR:
```
- If the language to which you translate mostly uses the letters of the ASCII char set (for example Spanish, French, German, but not Russian, Chinese) and if the translation of the full phrase is identical to, or starts with the same letters as the original full phrase, then only give the translation of the full phrase.
Conversion scheme:
Source (English):
```
{abbreviation}
```
Result:
```
{abbreviation}
```
Examples:
Source (English):
```
JWT
Enum
ASGI
```
Result (German):
```
JWT
Enum
ASGI
```
- If the description is not a full phrase for an abbreviation which the abbr element surrounds, but some other information, then just translate the description.
Conversion scheme:
Source (English):
```
{text}
```
Result:
```
{translation of text}
```
Examples:
Source (English):
```
path
linter
parsing
0.95.0
at the time of writing this
```
Result (German):
```
Pfad
Linter
Parsen
0.95.0
zum Zeitpunkt als das hier geschrieben wurde
```
- If the text surrounded by the abbr element is an abbreviation and the description contains both the full phrase for that abbreviation, and other information, separated by a colon (`:`), then append a dash (`-`) and the translation of the full phrase to the original full phrase and translate the other information.
Conversion scheme:
Source (English):
```
{abbreviation}
```
Result:
```
{abbreviation}
```
Examples:
Source (English):
```
I/O
CDN
IDE
```
Result (German):
```
I/O
CDN
IDE
```
- You can leave the original full phrase away, if the translated full phrase is identical or starts with the same letters as the original full phrase.
Conversion scheme:
Source (English):
```
{abbreviation}
```
Result:
```
{abbreviation}
```
Example:
Source (English):
```
ORM
```
Result (German):
```
ORM
```
- If there is an existing translation, and it has ADDITIONAL abbr elements in a sentence, and these additional abbr elements do not exist in the related sentence in the English text, then KEEP those additional abbr elements in the translation. Do not remove them. Except when you remove the whole sentence from the translation, because the whole sentence was removed from the English text, then also remove the abbr element. The reasoning for this rule is, that such additional abbr elements are manually added by the human editor of the translation, in order to translate or explain an English word to the human readers of the translation. These additional abbr elements would not make sense in the English text, but they do make sense in the translation. So keep them in the translation, even though they are not part of the English text. This rule only applies to abbr elements.
- Apply above rules also when there is an existing translation! Make sure that all title attributes in abbr elements get properly translated or updated, using the schemes given above. However, leave the ADDITIONAL abbr's described above alone. Do not change their formatting or content.