Browse Source

🌐 Add Portuguese translation for External Links (#1443)

Co-authored-by: Sebastián Ramírez <[email protected]>
pull/2196/head
Fabio Serrao 5 years ago
committed by GitHub
parent
commit
fe889f38e8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 82
      docs/pt/docs/external-links.md
  2. 1
      docs/pt/mkdocs.yml

82
docs/pt/docs/external-links.md

@ -0,0 +1,82 @@
# Links externos e Artigos
**FastAPI** tem uma grande comunidade em crescimento constante.
Existem muitas postagens, artigos, ferramentas e projetos relacionados ao **FastAPI**.
Aqui tem uma lista, incompleta, de algumas delas.
!!! tip "Dica"
Se você tem um artigo, projeto, ferramenta ou qualquer coisa relacionada ao **FastAPI** que ainda não está listada aqui, crie um <a href="https://github.com/tiangolo/fastapi/edit/master/docs/external-links.md" class="external-link" target="_blank">_Pull Request_ adicionando ele</a>.
## Artigos
### Inglês
{% if external_links %}
{% for article in external_links.articles.english %}
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
{% endfor %}
{% endif %}
### Japonês
{% if external_links %}
{% for article in external_links.articles.japanese %}
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
{% endfor %}
{% endif %}
### Vietnamita
{% if external_links %}
{% for article in external_links.articles.vietnamese %}
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
{% endfor %}
{% endif %}
### Russo
{% if external_links %}
{% for article in external_links.articles.russian %}
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
{% endfor %}
{% endif %}
### Alemão
{% if external_links %}
{% for article in external_links.articles.german %}
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <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> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
{% endfor %}
{% endif %}
## Palestras
{% if external_links %}
{% for article in external_links.talks.english %}
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
{% endfor %}
{% endif %}
## Projetos
Últimos projetos no GitHub com o tópico `fastapi`:
<div class="github-topic-projects">
</div>

1
docs/pt/mkdocs.yml

@ -42,6 +42,7 @@ nav:
- tutorial/first-steps.md
- alternatives.md
- history-design-future.md
- external-links.md
- benchmarks.md
markdown_extensions:
- toc:

Loading…
Cancel
Save