diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-07-07 10:58:41 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-07-07 10:58:41 +0200 |
| commit | 1d01cf480af28a55bd31da162205b9b65b85fb62 (patch) | |
| tree | d31bec34264b999293be73a45536e3496a8083be /app/controllers/admin | |
| parent | 08a126753f4dbb88a2b9aec618e8d78c1a4f6937 (diff) | |
fix typos, fixes #5692
Closes #5692
Merge request studip/studip!4321
Diffstat (limited to 'app/controllers/admin')
| -rw-r--r-- | app/controllers/admin/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/tags.php b/app/controllers/admin/tags.php index 03819bd..87f9e81 100644 --- a/app/controllers/admin/tags.php +++ b/app/controllers/admin/tags.php @@ -38,7 +38,7 @@ class Admin_TagsController extends AuthenticatedController 'validate' => function ($value) use ($tag) { $output = ''; if ($value !== mb_strtolower($value)) { - $output .= _('Schlagwörter sollen keine Großbuchstaben entahlten').' '; + $output .= _('Schlagwörter sollen keine Großbuchstaben enthalten').' '; } foreach (['\n', '#', '|', ' '] as $forbidden) { if (str_contains($value, $forbidden)) { |
