1
0
Fork 0
mirror of https://github.com/treffynnon/sqlstyle.guide.git synced 2025-03-09 12:49:51 -05:00

Merge branch 'pmarcus93-pt-br-translation' into gh-pages

This commit is contained in:
Simon Holywell 2017-04-19 10:31:06 +10:00
commit 183d873bf3
6 changed files with 1318 additions and 2 deletions

View file

@ -27,6 +27,7 @@ If you would like to translate the guide then please open a pull request or open
if you need some help getting it setup.
* [Japanese/日本語](http://www.sqlstyle.guide/ja/) by [nkurigit](https://github.com/nkurigit)
* [Portuguese (Brazil)/Português (BR)](http://www.sqlstyle.guide/pt-br/) by [pmarcus93](https://github.com/pmarcus93)
* [Simplified Chinese/简体中文](http://www.sqlstyle.guide/zh/) by
[wontoncoder](https://github.com/wontoncoder)

View file

@ -10,6 +10,10 @@
<span itemprop="name" alternateName="ja" title="日本語 (Japanese)" lang="ja">日本語</span>
</a>
·
<a href="{{ site.url }}/pt-br/" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name" alternateName="pt-BR" title="Português (BR) (Portuguese - Brazil)" lang="pt-BR">Português (BR)</span>
</a>
·
<a href="{{ site.url }}/zh" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name" alternateName="zh" title="简体中文 (Simplified Chinese)" lang="zh">简体中文</span>
</a>

View file

@ -8,11 +8,15 @@
<span itemprop="name" alternateName="en" title="English">English</span>
</a>
·
<a href="{{ site.url }}/ja" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<a href="{{ site.url }}/ja/" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name" alternateName="ja" title="日本語 (Japanese)" lang="ja">日本語</span>
</a>
·
<a href="{{ site.url }}/zh" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<a href="{{ site.url }}/pt-br/" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name" alternateName="pt-BR" title="Português (BR) (Portuguese - Brazil)" lang="pt-BR">Português (BR)</span>
</a>
·
<a href="{{ site.url }}/zh/" itemprop="availableLanguage" itemscope itemtype="http://schema.org/Language">
<span itemprop="name" alternateName="zh" title="简体中文 (Simplified Chinese)" lang="zh">简体中文</span>
</a>
</nav>

File diff suppressed because it is too large Load diff

View file

@ -34,6 +34,7 @@
<link rel="alternate" hreflang="en" href="{{ site.url }}/">
<link rel="alternate" hreflang="ja" href="{{ site.url }}/ja/">
<link rel="alternate" hreflang="zh" href="{{ site.url }}/zh/">
<link rel="alternate" hreflang="pt-BR" href="{{ site.url }}/pt-br/">
</head>
<body itemscope itemtype="http://schema.org/TechArticle">
<meta itemprop="wordCount" content="{{ content | number_of_words }}">

10
pt-br/index.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: default
lang: pt-BR
lang_title: Guia de Estilo SQL
---
* TOC
{:toc}
{% include sqlstyle.guide.pt-BR.md %}