Browse Source
Feature/add localized versions to footer (#2027)
* Add links to localized versions
* Update changelog
pull/2028/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
22 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/app.component.html
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Extended the footer navigation by the localized Ghostfolio versions |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
@ -46,8 +46,10 @@ |
|
|
|
<footer |
|
|
|
*ngIf=" |
|
|
|
(currentRoute === 'blog' || |
|
|
|
currentRoute === 'faq' || |
|
|
|
currentRoute === 'features' || |
|
|
|
currentRoute === 'markets' || |
|
|
|
currentRoute === 'open' || |
|
|
|
currentRoute === 'pricing' || |
|
|
|
currentRoute === 'resources' || |
|
|
|
currentRoute === 'register' || |
|
|
@ -126,6 +128,25 @@ |
|
|
|
>Twitter</a |
|
|
|
> |
|
|
|
</li> |
|
|
|
<li> </li> |
|
|
|
<li> |
|
|
|
<a href="../de" title="Ghostfolio in Deutsch">Deutsch</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="../en" title="Ghostfolio in English">English</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="../es" title="Ghostfolio in Español">Español</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="../fr" title="Ghostfolio en Français">Français</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="../it" title="Ghostfolio in Italiano">Italiano</a> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<a href="../nl" title="Ghostfolio in Nederlands">Nederlands</a> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|