GenderDysphoria.fyi/templates/language-menu.hbs
G Queiroz efe9c502cf
Add Portuguese translation (light version) (#111)
* fix(es): syntax error that prevented compilation

* feat(pt): add main text translation

* feat(pt): add tweets translation

* feat(pt): add PDF generation to GitHub workflow

* fix(pt): add misisng translations and formatting fixes

* fix(css): link fragment overlap with page header

* fix(css): add font Inter before Gothic A1

The Gothic A1 font lacks a few characters necessary for writing Portuguese, namely: á, í, ó, ú, ã, õ, and their upper case versions.

* fix(pt): remove 'Glossário' entry from _menu.hbs

* fix(build): slugify.js

* fix(pt): various typos and a few missing translations.

* chore: add .vscode to .gitignore
2022-10-23 10:49:09 -07:00

10 lines
734 B
Handlebars

<div class="dropdown-menu" aria-labelledby="nav-gdb">
<a href="/en/" class="{{#is page.lang 'en'}}active {{/is}}dropdown-item">English</a>
<a href="/zh/" class="{{#is page.lang 'zh'}}active {{/is}}dropdown-item">中文 (Chinese)</a>
<a href="/fr/" class="{{#is page.lang 'fr'}}active {{/is}}dropdown-item">Français (French)</a>
<a href="/de/" class="{{#is page.lang 'de'}}active {{/is}}dropdown-item">Deutsch (German)</a>
<a href="/hu/" class="{{#is page.lang 'hu'}}active {{/is}}dropdown-item">Magyar (Hungarian)</a>
<a href="/pl/" class="{{#is page.lang 'pl'}}active {{/is}}dropdown-item">polski (Polish)</a>
<a href="/pt/" class="{{#is page.lang 'pt'}}active {{/is}}dropdown-item">Português (Portuguese)</a>
</div>