diff --git a/CHANGELOG.md b/CHANGELOG.md index 73ebdf56c..b870e192c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Set the change detection strategy to `OnPush` in the prompt dialog component - Set the change detection strategy to `OnPush` in the overview of the admin control panel - Set the change detection strategy to `OnPush` in the portfolio page +- Improved the language localization for German (`de`) - Upgraded `envalid` from version `8.1.1` to `8.2.0` - Upgraded `stripe` from version `21.0.1` to `22.2.3` diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index d71669f41..d7a8be3b8 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -1575,7 +1575,7 @@ Financial Planning - Financial Planning + Finanzplanung libs/ui/src/lib/i18n.ts 108 @@ -4703,7 +4703,7 @@ Web - Web + Web libs/ui/src/lib/i18n.ts 120 @@ -4775,7 +4775,7 @@ Category - Category + Kategorie apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 77 @@ -5637,7 +5637,7 @@ Stock Tracking - Stock Tracking + Aktien-Tracking libs/ui/src/lib/i18n.ts 111 @@ -5717,7 +5717,7 @@ Available on - Available on + Verfügbar für apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 130 @@ -7090,7 +7090,7 @@ Tax Reporting - Tax Reporting + Steuerreporting libs/ui/src/lib/i18n.ts 112 @@ -7338,7 +7338,7 @@ Dividend Tracking - Dividend Tracking + Dividenden-Tracking libs/ui/src/lib/i18n.ts 105 @@ -7398,7 +7398,7 @@ Investment Research - Investment Research + Investment Research libs/ui/src/lib/i18n.ts 109 @@ -7680,7 +7680,7 @@ Net Worth Tracking - Net Worth Tracking + Vermögens-Tracking libs/ui/src/lib/i18n.ts 110 @@ -8110,7 +8110,7 @@ ETF Tracking - ETF Tracking + ETF-Tracking libs/ui/src/lib/i18n.ts 106 diff --git a/libs/ui/src/lib/i18n.ts b/libs/ui/src/lib/i18n.ts index e8c5d7ae2..26091be05 100644 --- a/libs/ui/src/lib/i18n.ts +++ b/libs/ui/src/lib/i18n.ts @@ -113,12 +113,12 @@ const locales = { WEALTH_MANAGEMENT: $localize`Wealth Management`, // Product platforms - ANDROID: $localize`Android`, - IOS: $localize`iOS`, - LINUX: $localize`Linux`, - MACOS: $localize`macOS`, + ANDROID: 'Android', + IOS: 'iOS', + LINUX: 'Linux', + MACOS: 'macOS', WEB: $localize`Web`, - WINDOWS: $localize`Windows` + WINDOWS: 'Windows' } satisfies Record & Record & Record &