From: Sam Courtemanche Date: Fri, 2 Jul 2021 14:12:05 +0000 (+0200) Subject: 🌐 Add French translation for External Links (#3103) X-Git-Tag: 0.65.3~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=acda3f06b0a884965fb4196dbf029b1043a770ed;p=thirdparty%2Ffastapi%2Ffastapi.git 🌐 Add French translation for External Links (#3103) Co-authored-by: Sebastián Ramírez --- diff --git a/docs/fr/docs/external-links.md b/docs/fr/docs/external-links.md new file mode 100644 index 0000000000..002e6d2b21 --- /dev/null +++ b/docs/fr/docs/external-links.md @@ -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 Pull Request l'ajoutant. + +## Articles + +### Anglais + +{% if external_links %} +{% for article in external_links.articles.english %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +### Japonais + +{% if external_links %} +{% for article in external_links.articles.japanese %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +### Vietnamien + +{% if external_links %} +{% for article in external_links.articles.vietnamese %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +### Russe + +{% if external_links %} +{% for article in external_links.articles.russian %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +### Allemand + +{% if external_links %} +{% for article in external_links.articles.german %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +## Podcasts + +{% if external_links %} +{% for article in external_links.podcasts.english %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +## Conférences + +{% if external_links %} +{% for article in external_links.talks.english %} + +* {{ article.title }} par {{ article.author }}. +{% endfor %} +{% endif %} + +## Projets + +Les projets Github avec le topic `fastapi` les plus récents : + +
+
diff --git a/docs/fr/mkdocs.yml b/docs/fr/mkdocs.yml index c5860a4bad..c0bbb2ac3a 100644 --- a/docs/fr/mkdocs.yml +++ b/docs/fr/mkdocs.yml @@ -56,6 +56,7 @@ nav: - Tutoriel - Guide utilisateur: - tutorial/background-tasks.md - alternatives.md +- external-links.md markdown_extensions: - toc: permalink: true