diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2024-03-14 17:08:26 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2024-03-14 17:08:26 +0000 |
| commit | 0fb33e2e8ea3a40bd45f72dc16f65419e82a656c (patch) | |
| tree | bb3eff329cd9719c20030ab9d09427f755b9f898 /locale | |
| parent | f2f70529462f10f08d7a0ca57bfb50c80e645fa4 (diff) | |
replaced getFullname with getFullName, re #3499
Merge request studip/studip!2660
Diffstat (limited to 'locale')
| -rw-r--r-- | locale/de/LC_MAILS/close_resource_request.php | 2 | ||||
| -rw-r--r-- | locale/de/LC_MAILS/delete_booking_notification.php | 2 | ||||
| -rw-r--r-- | locale/de/LC_MAILS/request_denied_mail.inc.php | 2 | ||||
| -rw-r--r-- | locale/en/LC_MAILS/close_resource_request.php | 2 | ||||
| -rw-r--r-- | locale/en/LC_MAILS/delete_booking_notification.php | 2 | ||||
| -rw-r--r-- | locale/en/LC_MAILS/request_denied_mail.inc.php | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/locale/de/LC_MAILS/close_resource_request.php b/locale/de/LC_MAILS/close_resource_request.php index 3f017d7..2ff931f 100644 --- a/locale/de/LC_MAILS/close_resource_request.php +++ b/locale/de/LC_MAILS/close_resource_request.php @@ -25,7 +25,7 @@ Die folgenden Zeiträume wurden gebucht: <? foreach ($single_dates as $date) : ?> <? if($date instanceof CourseDate) : ?> - - <?= $date->getFullname() ?> + - <?= $date->getFullName() ?> <? else : ?> - <?= $date->toString('default') ?> <? endif ?> diff --git a/locale/de/LC_MAILS/delete_booking_notification.php b/locale/de/LC_MAILS/delete_booking_notification.php index c5ef18d..4ba483f 100644 --- a/locale/de/LC_MAILS/delete_booking_notification.php +++ b/locale/de/LC_MAILS/delete_booking_notification.php @@ -7,7 +7,7 @@ Ihre Buchung der Ressource <?= $resource->name ?> am <?= date('d.m.Y', $begin) ? <? endif ?> <? if ($booking_course instanceof Course): ?> -Es handelte sich um eine Buchung für die Veranstaltung <?= $booking_course->getFullname() ?>. +Es handelte sich um eine Buchung für die Veranstaltung <?= $booking_course->getFullName() ?>. <? endif ?> <? if ($deleting_user instanceof User) : ?> diff --git a/locale/de/LC_MAILS/request_denied_mail.inc.php b/locale/de/LC_MAILS/request_denied_mail.inc.php index 4721677..e267e2a 100644 --- a/locale/de/LC_MAILS/request_denied_mail.inc.php +++ b/locale/de/LC_MAILS/request_denied_mail.inc.php @@ -1,5 +1,5 @@ Ihre Raumanfrage vom <?= date('d.m.Y', $request->mkdate) ?> - <?= $range_object instanceof Course ? sprintf('zur Veranstaltung %s', htmlReady($range_object->getFullname())) : ''?> wurde + <?= $range_object instanceof Course ? sprintf('zur Veranstaltung %s', htmlReady($range_object->getFullName())) : ''?> wurde <?= $request->last_modifier instanceof User ? 'von ' . $request->last_modifier->getFullName() : '' diff --git a/locale/en/LC_MAILS/close_resource_request.php b/locale/en/LC_MAILS/close_resource_request.php index 44d995b..2adcad9 100644 --- a/locale/en/LC_MAILS/close_resource_request.php +++ b/locale/en/LC_MAILS/close_resource_request.php @@ -25,7 +25,7 @@ The following time ranges have been booked: <? foreach ($single_dates as $date) : ?> <? if($date instanceof CourseDate) : ?> -- <?= $date->getFullname() ?> +- <?= $date->getFullName() ?> <? else : ?> - <?= $date->toString('default') ?> <? endif ?> diff --git a/locale/en/LC_MAILS/delete_booking_notification.php b/locale/en/LC_MAILS/delete_booking_notification.php index 3e57aea..4146dd9 100644 --- a/locale/en/LC_MAILS/delete_booking_notification.php +++ b/locale/en/LC_MAILS/delete_booking_notification.php @@ -7,7 +7,7 @@ Your booking of the resource <?= $resource->name ?> on <?= date('d.m.Y', $begin) <? endif ?> <? if ($booking_course instanceof Course): ?> -The booking deleted belonged to course <?= $booking_course->getFullname() ?>. +The booking deleted belonged to course <?= $booking_course->getFullName() ?>. <? endif ?> <? if ($deleting_user instanceof User) : ?> diff --git a/locale/en/LC_MAILS/request_denied_mail.inc.php b/locale/en/LC_MAILS/request_denied_mail.inc.php index f852967..4a601ab 100644 --- a/locale/en/LC_MAILS/request_denied_mail.inc.php +++ b/locale/en/LC_MAILS/request_denied_mail.inc.php @@ -1,5 +1,5 @@ Your room request from <?= date('d.m.Y', $request->mkdate) ?> - <?= $range_object instanceof Course ? sprintf('for the Course %s', htmlReady($range_object->getFullname())) : ''?> has been denied + <?= $range_object instanceof Course ? sprintf('for the Course %s', htmlReady($range_object->getFullName())) : ''?> has been denied <?= $request->last_modifier instanceof User ? 'by ' . $request->last_modifier->getFullName() : '' |
