diff --git a/app/views/consultation/admin/block-responsibilities.php b/app/views/consultation/admin/block-responsibilities.php
index ea3531a0295e37d991a97d9e73c3de2af41d6bc9..4d1b5ee660a3147278befbab783ad6888a4e799a 100644
--- a/app/views/consultation/admin/block-responsibilities.php
+++ b/app/views/consultation/admin/block-responsibilities.php
@@ -12,7 +12,7 @@ $selected = function ($type, $id) use ($block) {
 ?>
 <? if (!empty($responsible['users'])): ?>
     <label>
-        <?= _('Durchführende Person(en)') ?>
+        <?= _('Durchführende Personen') ?>
         <select name="responsibilities[user][]" multiple class="nested-select">
             <? foreach ($responsible['users'] as $user): ?>
                 <option value="<?= htmlReady($user->id) ?>" <?= $selected('user', $user->id) ?>>
@@ -25,7 +25,7 @@ $selected = function ($type, $id) use ($block) {
 
 <? if (!empty($responsible['groups'])): ?>
     <label>
-        <?= _('Durchführende Gruppe(n)') ?>
+        <?= _('Durchführende Gruppen') ?>
         <select name="responsibilities[statusgroup][]" multiple class="nested-select">
             <? foreach ($responsible['groups'] as $group): ?>
                 <option value="<?= htmlReady($group->id) ?>" <?= $selected('statusgroup', $group->id) ?>>
@@ -38,7 +38,7 @@ $selected = function ($type, $id) use ($block) {
 
 <? if (!empty($responsible['institutes'])): ?>
     <label>
-        <?= _('Durchführende Einrichtung(en)') ?>
+        <?= _('Durchführende Einrichtungen') ?>
         <select name="responsibilities[institute][]" multiple class="nested-select">
             <? foreach ($responsible['institutes'] as $institute): ?>
                 <option value="<?= htmlReady($institute->id) ?>" <?= $selected('institute', $institute->id) ?>>
diff --git a/app/views/consultation/admin/create.php b/app/views/consultation/admin/create.php
index d8727ef2e797379607632c67322f888bf679c2d4..6511d79105250eae0f1763ba7a48535b7a2c072f 100644
--- a/app/views/consultation/admin/create.php
+++ b/app/views/consultation/admin/create.php
@@ -123,7 +123,7 @@ $intervals = [
 
 <? if ($responsible): ?>
     <fieldset>
-        <legend><?= _('Durchführende Person(en), Gruppe(n) oder Einrichtung(en)') ?></legend>
+        <legend><?= _('Durchführende Personen, Gruppen oder Einrichtungen') ?></legend>
 
         <?= $this->render_partial('consultation/admin/block-responsibilities.php', compact('responsible')) ?>
     </fieldset>