Skip to content

Commit

Permalink
Update cookiegroup.php
Browse files Browse the repository at this point in the history
Label Domains+Dienste bei weiteren Sprachen anzeigen
  • Loading branch information
aeberhard committed Mar 13, 2023
1 parent 86e8934 commit 639a2d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/cookiegroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$checkboxes[] = [$checked, $v['uid']];
}
if (count($checkboxes) > 0) {
$form->addRawField(consent_manager_rex_form::getFakeCheckbox('', $checkboxes)); /** @phpstan-ignore-line */
$form->addRawField(consent_manager_rex_form::getFakeCheckbox($addon->i18n('consent_manager_domain'), $checkboxes)); /** @phpstan-ignore-line */
}
}
$field = $form->addTextField('name');
Expand Down Expand Up @@ -97,7 +97,7 @@
$checked = (in_array((string) $v['uid'], $checkedBoxes, true)) ? '|1|' : '';
$checkboxes[] = [$checked, $v['uid']];
}
$form->addRawField(consent_manager_rex_form::getFakeCheckbox('', $checkboxes)); /** @phpstan-ignore-line */
$form->addRawField(consent_manager_rex_form::getFakeCheckbox($addon->i18n('consent_manager_cookies'), $checkboxes)); /** @phpstan-ignore-line */
}
}

Expand Down

0 comments on commit 639a2d7

Please sign in to comment.