diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-03 13:39:35 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-03 13:39:35 +0100 |
| commit | 29b9818f90fda4f1d677761d50a4432dcd7f09fa (patch) | |
| tree | cc9cb129b2ef5976542f8459d10f0e25419f5f70 | |
| parent | c1bd3bb9f221d1d837ee4ac2e65aa1f0ac37f7d0 (diff) | |
no variables in gettext!, fixes #6322
Closes #6322
Merge request studip/studip!4794
| -rw-r--r-- | resources/vue/components/forum/SubscriptionDropdown.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/vue/components/forum/SubscriptionDropdown.vue b/resources/vue/components/forum/SubscriptionDropdown.vue index 66153ae..18b64c0 100644 --- a/resources/vue/components/forum/SubscriptionDropdown.vue +++ b/resources/vue/components/forum/SubscriptionDropdown.vue @@ -139,7 +139,7 @@ const subscribe = async (notificationType = 'all') => { type="button" class="button subscription-button" :class="subscriptionButtonLabel ? 'button--icon-label' : 'button--icon-only'" - :title="$gettext(`${type} abonnieren (Menü öffnen)`)" + :title="$gettext('%{type} abonnieren (Menü öffnen)', { type })" :aria-label="$gettext('Menü zum Abonnieren für „%{ context }“ öffnen)', { context: computedContext ?? type })" aria-haspopup="menu" :aria-expanded="isOpen" |
