diff --git a/CHANGELOG.md b/CHANGELOG.md index 087a70280c..76b4edbfaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Improved the style of the empty state in the _Fear & Greed Index_ component - Improved the styling of the type filter in the activities table component (experimental) +- Improved the language localization for German (`de`) ## 3.37.0 - 2026-07-30 diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 4fe4422678..0378b10680 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -351,7 +351,7 @@ Unknown - Unknown + Unbekannt libs/ui/src/lib/i18n.ts 88 @@ -1767,7 +1767,7 @@ Invalid API key - Invalid API key + Ungültiger API-Schlüssel apps/client/src/app/components/admin-settings/admin-settings.component.html 112 diff --git a/libs/ui/src/lib/fear-and-greed-index/fear-and-greed-index.component.html b/libs/ui/src/lib/fear-and-greed-index/fear-and-greed-index.component.html index e441c53f6b..02eed4442a 100644 --- a/libs/ui/src/lib/fear-and-greed-index/fear-and-greed-index.component.html +++ b/libs/ui/src/lib/fear-and-greed-index/fear-and-greed-index.component.html @@ -12,10 +12,11 @@
{{ fearAndGreedIndexText() }} + @let value = fearAndGreedIndex() | number: '1.0-0'; {{ - (fearAndGreedIndex() | number: '1.0-0') ?? placeholder - }}{{ + value ?? placeholder + }}/100