Translating %{filter} in headings for discovery routes

I have some difficulty translating the following texts into German. In German, adjectives like “hot” or “unread” change form depending on context, so one static %{filter} doesn’t work grammatically.

Are other languages affected too? @translators, how are you solving this in your language?

One idea I had was to add “all” to the strings where it’s currently missing in English - for example: “all %{filter} topics in %{category}”. But adding “all” everywhere might be overkill.

Here’s a table showing how the adjective endings change in German:

%{filter} “All %{filter} topics” “%{filter} topics in %{category}”
latest Alle aktuellen Themen Aktuelle Themen in %{category}
top Alle angesagten Themen Angesagte Themen in %{category}
hot Alle heißen Themen Heiße Themen in %{category}
new Alle neuen Themen Neue Themen in %{category}
unread Alle ungelesenen Themen Ungelesene Themen in %{category}
unseen Alle ungesehenen Themen Ungesehene Themen in %{category}

I also wondered if %{tags} in category_tag: always refers to more than one tag. In the lines above, %{tag} is used for a single tag, and %{tags} for multiple tags, but I didn’t find versions for a category and a single tag.

The strings I am talking about for reference
    discovery:
      headings:
        all:
          default: "All %{filter} topics"
          posted: "All topics you’ve posted in"
          bookmarks: "All topics you’ve bookmarked"

        category:
          default: "%{filter} topics in %{category}"
          posted: "Topics in %{category} you’ve posted in"
          bookmarks: "Topics in %{category} you’ve bookmarked"

        no_tags:
          all_default: "All topics without tags"
          category_default: "%{filter} topics in %{category} without tags"
          all:
            posted: "All topics without tags you've posted in"
            bookmarks: "All topics without tags you've bookmarked"
          category:
            posted: "Topics in %{category} without tags you've posted in"
            bookmarks: "Topics in %{category} without tags you've bookmarked"

        single_tag:
          default: "%{filter} topics tagged %{tag}"
          posted: "Topics tagged %{tag} you've posted in"
          bookmarks: "Topics tagged %{tag} you’ve bookmarked"

        multi_tag:
          default: "%{filter} topics tagged %{tags}"
          posted: "Topics tagged %{tags} you've posted in"
          bookmarks: "Topics tagged %{tags} you’ve bookmarked"

        category_tag:
          default: "%{filter} topics in %{category} tagged %{tags}"
          posted: "Topics in %{category} tagged %{tags} you’ve posted in"
          bookmarks: "Topics in %{category} tagged %{tags} you’ve bookmarked"

        categories: "All categories"

        filter_labels:
          latest: "Latest"
          top: "Top"
          new: "New"
          unread: "Unread"
          hot: "Hot"
          unseen: "Unseen"