aboutsummaryrefslogtreecommitdiff
path: root/locale
diff options
context:
space:
mode:
authorFelix Pahlow <felix.pahlow@itz.uni-halle.de>2023-09-18 15:50:07 +0000
committerAndré Noack <noack@data-quest.de>2023-09-18 15:50:07 +0000
commite63b493f42262050662a2ea5f05bb438cf988ace (patch)
tree7551f7c0f673976c8212173b7a6b97c0f2d1f249 /locale
parent3e5e9db202bb380d48b1a751a8cedfb156d20375 (diff)
Resolve #3195 "Name der Veranstaltung in Terminlöschungs-Nachricht"
Closes #3195 Merge request studip/studip!2162
Diffstat (limited to 'locale')
-rw-r--r--locale/de/LC_MAILS/delete_booking_notification.php4
-rw-r--r--locale/en/LC_MAILS/delete_booking_notification.php4
2 files changed, 8 insertions, 0 deletions
diff --git a/locale/de/LC_MAILS/delete_booking_notification.php b/locale/de/LC_MAILS/delete_booking_notification.php
index e3f80a0..c5ef18d 100644
--- a/locale/de/LC_MAILS/delete_booking_notification.php
+++ b/locale/de/LC_MAILS/delete_booking_notification.php
@@ -6,6 +6,10 @@ Ihre Buchung der Ressource <?= $resource->name ?> am <?= date('d.m.Y', $begin) ?
von <?= date('H:i', $begin) ?> bis <?= date('H:i', $end) ?> Uhr wurde gelöscht.
<? endif ?>
+<? if ($booking_course instanceof Course): ?>
+Es handelte sich um eine Buchung für die Veranstaltung <?= $booking_course->getFullname() ?>.
+<? endif ?>
+
<? if ($deleting_user instanceof User) : ?>
Die Löschung wurde von <?= $deleting_user->getFullName() ?> vorgenommen.
<? endif ?>
diff --git a/locale/en/LC_MAILS/delete_booking_notification.php b/locale/en/LC_MAILS/delete_booking_notification.php
index 3d98780..3e57aea 100644
--- a/locale/en/LC_MAILS/delete_booking_notification.php
+++ b/locale/en/LC_MAILS/delete_booking_notification.php
@@ -6,6 +6,10 @@ Your booking of the resource <?= $resource->name ?> on <?= date('d.m.Y', $begin)
from <?= date('H:i', $begin) ?> to <?= date('H:i', $end) ?> has been deleted.
<? endif ?>
+<? if ($booking_course instanceof Course): ?>
+The booking deleted belonged to course <?= $booking_course->getFullname() ?>.
+<? endif ?>
+
<? if ($deleting_user instanceof User) : ?>
The deletion has been made by <?= $deleting_user->getFullName() ?>.
<? endif ?>