From 0e42a62e9207e458b3db84d2606b26f18f41823b Mon Sep 17 00:00:00 2001
From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
Date: Sat, 1 Aug 2026 09:32:10 +0200
Subject: [PATCH 1/2] Task/improve color of checkboxes in type filter of
activities table component (#7493)
Improve color of checkboxes
---
apps/client/src/styles/theme.scss | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss
index 75ecc210df..3f81250116 100644
--- a/apps/client/src/styles/theme.scss
+++ b/apps/client/src/styles/theme.scss
@@ -364,6 +364,12 @@ $gf-typography: (
)
);
+ @include mat.pseudo-checkbox-overrides(
+ (
+ full-selected-icon-color: var(--gf-theme-primary-500)
+ )
+ );
+
@include mat.slide-toggle-overrides(
(
selected-focus-handle-color: var(--gf-theme-primary-500),
From c383eade6f193c8c9d13e1fbab04b168f5d75567 Mon Sep 17 00:00:00 2001
From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
Date: Sat, 1 Aug 2026 09:32:45 +0200
Subject: [PATCH 2/2] Task/improve language localization for DE (20260801)
(#7497)
* Update translations
* Update changelog
---
CHANGELOG.md | 6 ++++++
apps/client/src/locales/messages.de.xlf | 6 +++---
2 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3fe881b943..952ea923bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## Unreleased
+
+### Changed
+
+- Improved the language localization for German (`de`)
+
## 3.38.0 - 2026-07-31
### Added
diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf
index 2765b0b4c8..b2800165a4 100644
--- a/apps/client/src/locales/messages.de.xlf
+++ b/apps/client/src/locales/messages.de.xlf
@@ -3051,7 +3051,7 @@
Export
- Export
+ exportieren
libs/ui/src/lib/activities-table/activities-table.component.html
68
@@ -5287,7 +5287,7 @@
Do you really want to delete these activities?
- Do you really want to delete these activities?
+ Möchtest du diese Aktivitäten wirklich löschen?
libs/ui/src/lib/activities-table/activities-table.component.ts
334
@@ -8125,7 +8125,7 @@
{VAR_PLURAL, plural, =1 {Activity} other {Activities}}
- {VAR_PLURAL, plural, =1 {Activity} other {Activities}}
+ {VAR_PLURAL, plural, =1 {Aktivität} other {Aktivitäten}}
libs/ui/src/lib/activities-table/activities-table.component.html
69