From 359101bb4c98a99991271213e21bec31ba576aeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Wed, 2 Aug 2023 11:36:40 +0200 Subject: [PATCH] Fix wrong labels in filter menu buttons --- webapp/components/FilterMenu/FollowingFilter.vue | 4 ++-- webapp/components/FilterMenu/OrderByFilter.vue | 2 +- webapp/locales/de.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/webapp/components/FilterMenu/FollowingFilter.vue b/webapp/components/FilterMenu/FollowingFilter.vue index b650f17b7..1df121a39 100644 --- a/webapp/components/FilterMenu/FollowingFilter.vue +++ b/webapp/components/FilterMenu/FollowingFilter.vue @@ -22,11 +22,11 @@ icon="user-plus" :label="$t('filter-menu.following')" :filled="filteredByUsersFollowed" - :title="$t('contribution.filterFollow')" + :title="$t('filter-menu.following')" @click="toggleFilteredByFollowed(currentUser.id)" size="small" > - {{ $t('contribution.filterFollow') }} + {{ $t('filter-menu.following') }}
  • diff --git a/webapp/components/FilterMenu/OrderByFilter.vue b/webapp/components/FilterMenu/OrderByFilter.vue index 57c173152..87cdcf897 100644 --- a/webapp/components/FilterMenu/OrderByFilter.vue +++ b/webapp/components/FilterMenu/OrderByFilter.vue @@ -24,7 +24,7 @@ data-test="oldest-button" size="small" > - {{ buttonTitle('asc') }} + {{ buttonLabel('asc') }}
  • diff --git a/webapp/locales/de.json b/webapp/locales/de.json index 6b1edaabe..a1407940d 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -301,7 +301,7 @@ }, "filterFollow": "Nutzern, denen ich folge", "filterMasonryGrid": { - "myFriends": "Nutzer denen ich folge", + "myFriends": "Nutzer, denen ich folge", "myGroups": "Aus meinen Gruppen", "myTopics": "Meine Themen", "noFilter": "Inhalte filtern",