diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-06-26 21:18:12 +0200 |
|---|---|---|
| committer | David Siegfried <david.siegfried@uni-vechta.de> | 2025-06-26 19:18:12 +0000 |
| commit | 9316f06c683734b415099a7acf95b7f2a2a701a6 (patch) | |
| tree | 8b5354ebe8a714284da4ac3b2129b0e45acb2ea9 /resources/assets/javascripts/bootstrap | |
| parent | 152783ee8c77cb809b62f85363b9c82e53a46aec (diff) | |
unify text strings that are very very similar, fixes #5669
Closes #5669
Merge request studip/studip!4294
Diffstat (limited to 'resources/assets/javascripts/bootstrap')
| -rw-r--r-- | resources/assets/javascripts/bootstrap/forms.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/assets/javascripts/bootstrap/forms.js b/resources/assets/javascripts/bootstrap/forms.js index 9d7a63b..b63a8a0 100644 --- a/resources/assets/javascripts/bootstrap/forms.js +++ b/resources/assets/javascripts/bootstrap/forms.js @@ -290,7 +290,7 @@ STUDIP.ready(function () { //The form has been stored successfully: window.location.href = this.STUDIPFORM_REDIRECTURL; } else if (output !== 'STUDIPFORM_STORE_SUCCESS') { - Report.error($gettext('Es ist ein Fehler aufgetreten'), output); + Report.error($gettext('Es ist ein Fehler aufgetreten.'), output); } }); } else { @@ -330,7 +330,7 @@ STUDIP.ready(function () { const note = { name: node.name, label: node.labels[0].querySelector('.textlabel').innerText, - description: node.dataset.validation_requirement ?? $gettext('Fehler!'), + description: node.dataset.validation_requirement ?? $gettext('Fehler'), describedby: node.id }; |
