]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🌐 Add French translation for External Links (#3103)
authorSam Courtemanche <sam.courtemanche@epita.fr>
Fri, 2 Jul 2021 14:12:05 +0000 (16:12 +0200)
committerGitHub <noreply@github.com>
Fri, 2 Jul 2021 14:12:05 +0000 (16:12 +0200)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/fr/docs/external-links.md [new file with mode: 0644]
docs/fr/mkdocs.yml

diff --git a/docs/fr/docs/external-links.md b/docs/fr/docs/external-links.md
new file mode 100644 (file)
index 0000000..002e6d2
--- /dev/null
@@ -0,0 +1,82 @@
+# Articles et liens externes
+
+**FastAPI** possède une grande communauté en constante extension.
+
+Il existe de nombreux articles, outils et projets liés à **FastAPI**.
+
+Voici une liste incomplète de certains d'entre eux.
+
+!!! tip "Astuce"
+    Si vous avez un article, projet, outil, ou quoi que ce soit lié à **FastAPI** qui n'est actuellement pas listé ici, créez une <a href="https://github.com/tiangolo/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">Pull Request l'ajoutant</a>.
+
+## Articles
+
+### Anglais
+
+{% if external_links %}
+{% for article in external_links.articles.english %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+### Japonais
+
+{% if external_links %}
+{% for article in external_links.articles.japanese %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+### Vietnamien
+
+{% if external_links %}
+{% for article in external_links.articles.vietnamese %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+### Russe
+
+{% if external_links %}
+{% for article in external_links.articles.russian %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+### Allemand
+
+{% if external_links %}
+{% for article in external_links.articles.german %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+## Podcasts
+
+{% if external_links %}
+{% for article in external_links.podcasts.english %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+## Conférences
+
+{% if external_links %}
+{% for article in external_links.talks.english %}
+
+* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> par <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
+{% endfor %}
+{% endif %}
+
+## Projets
+
+Les projets Github avec le topic `fastapi` les plus récents :
+
+<div class="github-topic-projects">
+</div>
index c5860a4bad41c36aa00fa280584db94ad989f258..c0bbb2ac3a62180b2e99b5c7016de0429a568b60 100644 (file)
@@ -56,6 +56,7 @@ nav:
 - Tutoriel - Guide utilisateur:
   - tutorial/background-tasks.md
 - alternatives.md
+- external-links.md
 markdown_extensions:
 - toc:
     permalink: true