Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Brazilian Portuguese translations #102

Merged
merged 4 commits into from
Apr 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions i18n/de.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ other = "Siehe auch:"
[loadComments]
other = "Kommentare laden?"

[pageNotFound]
other = "404 - Seite nicht gefunden"

[fofLinkText]
other = "Zur Hauptseite"

Expand Down
3 changes: 3 additions & 0 deletions i18n/en.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ other = "See Also:"
[loadComments]
other = "Load Comments?"

[pageNotFound]
other = "404 - Page not found"

[fofLinkText]
other = "Take Me Home"

Expand Down
167 changes: 167 additions & 0 deletions i18n/pt-br.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
[ellipsis]
other = "..."

[colon]
other = ": "

[minute]
one = "min"
other = "mins"

[tocTitle]
other = "Conteúdo"

[readMore]
other = "Leia mais"

[prevPage]
other = "Recentes"

[nextPage]
other = "Anteriores"

[copy]
other = "Copiar"

[copied]
other = "Copiado!"

[copyrightAuthor]
other = "Autor"

[copyrightLink]
other = "Link"

[copyrightLicense]
other = "Licença"

[shareOn]
other = "Compartilhar em:"

[shareOnTitle]
other = "Compartilhar em "

[shareViaTitle]
other = "Compartilhar via "

[relatedPosts]
other = "Veja também:"

[loadComments]
other = "Carregar comentários?"

[pageNotFound]
other = "404 - Página não encontrada"

[fofLinkText]
other = "Leve-me para página inicial"

[serviceWorkerUpdatedText]
other = "Nova atualização disponível"

[serviceWorkerUpdatedAction]
other = "Recarregar"


# Redes Sociais

[twitter]
other = "Twitter"

[facebook]
other = "Facebook"

[linkedin]
other = "LinkedIn"

[telegram]
other = "Telegram"

[weibo]
other = "Weibo"

[douban]
other = "Douban"

[qq]
other = "QQ"

[qzone]
other = "Qzone"

[qrcode]
other = "QR Code"


# Meses
# Utilizado em `i18nMonth`

[january]
other = "Janeiro"

[february]
other = "Fevereiro"

[march]
other = "Março"

[april]
other = "Abril"

[may]
other = "Maio"

[june]
other = "Junho"

[july]
other = "Julho"

[august]
other = "Agosto"

[september]
other = "Setembro"

[october]
other = "Outubro"

[november]
other = "Novembro"

[december]
other = "Dezembro"


# Números
# Utilizado em `i18nYear`

[0]
other = "0"

[1]
other = "1"

[2]
other = "2"

[3]
other = "3"

[4]
other = "4"

[5]
other = "5"

[6]
other = "6"

[7]
other = "7"

[8]
other = "8"

[9]
other = "9"
3 changes: 3 additions & 0 deletions i18n/zh.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ other = "相关文章:"
[loadComments]
other = "加载评论"

[pageNotFound]
other = "404 - 页面不存在"

[fofLinkText]
other = "送我回主页"

Expand Down
2 changes: 1 addition & 1 deletion layouts/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</video>
{{ end }}
<div class="main-inner">
<h1>404 Page NOT Found.</h1>
<h1>{{ i18n "pageNotFound" }}</h1>
<div class="fof-footer">
<a href="{{ print `/` | relLangURL }}">{{ i18n "fofLinkText" }}</a>
</div>
Expand Down