diff --git a/module/Bsz/src/Bsz/Config/Client.php b/module/Bsz/src/Bsz/Config/Client.php
index 78fea102477..5e94d7dd4ba 100644
--- a/module/Bsz/src/Bsz/Config/Client.php
+++ b/module/Bsz/src/Bsz/Config/Client.php
@@ -305,7 +305,7 @@ public function isIsilSession()
}
/**
- * Does this entity alreay have an isil stored in session (ill portal)
+ * Does this entity already have an isil stored in session (ill portal)
* @return bool
*/
public function hasIsilSession()
diff --git a/module/Bsz/src/Bsz/Controller/RecordController.php b/module/Bsz/src/Bsz/Controller/RecordController.php
index 4ef8d1f7f2d..f3a7b335b38 100644
--- a/module/Bsz/src/Bsz/Controller/RecordController.php
+++ b/module/Bsz/src/Bsz/Controller/RecordController.php
@@ -229,7 +229,7 @@ public function freeFormAction()
}
/**
- * Determin if we should use the test or live url.
+ * Determine if we should use the test or live url.
* @return boolean
*/
private function isTestMode()
@@ -256,7 +256,7 @@ private function isDev()
}
/**
- * Determin if we should use the test or live url.
+ * Determine if we should use the test or live url.
* @return boolean
*/
public function getCustomUrl()
@@ -357,11 +357,11 @@ public function parseResponse($html)
// so if it matches is returns 1 which is casted to true
if ((bool)preg_match('/Bestell-Id:\s*(\d*)/', $html->textContent, $id) === true) {
$this->orderId = $id[1];
- // Order is successfull
+ // Order is successful
$this->flashMessenger()->addSuccessMessage('ILL::request_submit_ok');
return true;
} else {
- // order not successfull - disable error reporting because
+ // order not successful - disable error reporting because
// preg_match errors may occur.
$error_reporting = error_reporting();
error_reporting(0);
diff --git a/module/Bsz/src/Bsz/Controller/Search2RecordController.php b/module/Bsz/src/Bsz/Controller/Search2RecordController.php
index c26e2d353ae..6ff03d80c7a 100644
--- a/module/Bsz/src/Bsz/Controller/Search2RecordController.php
+++ b/module/Bsz/src/Bsz/Controller/Search2RecordController.php
@@ -229,7 +229,7 @@ public function freeFormAction()
}
/**
- * Determin if we should use the test or live url.
+ * Determine if we should use the test or live url.
* @return boolean
*/
private function isTestMode()
@@ -379,11 +379,11 @@ public function parseResponse($html)
// so if it matches is returns 1 which is casted to true
if ((bool)preg_match('/Bestell-Id:\s*(\d*)/', $html->textContent, $id) === true) {
$this->orderId = $id[1];
- // Order is successfull
+ // Order is successful
$this->flashMessenger()->addSuccessMessage('ILL::request_submit_ok');
return true;
} else {
- // order not successfull - disable error reporting because
+ // order not successful - disable error reporting because
// preg_match errors may occur.
$error_reporting = error_reporting();
error_reporting(0);
diff --git a/module/Bsz/src/Bsz/Debug.php b/module/Bsz/src/Bsz/Debug.php
index e49e1ee4c0e..667e58309bd 100644
--- a/module/Bsz/src/Bsz/Debug.php
+++ b/module/Bsz/src/Bsz/Debug.php
@@ -70,7 +70,7 @@ public static function isInternal()
}
/**
- * Determin if running on Test Server
+ * Determine if running on Test Server
* @return boolean
*/
public static function isDev()
diff --git a/module/Bsz/src/Bsz/ILL/Logic.php b/module/Bsz/src/Bsz/ILL/Logic.php
index 5df4c897888..dc59e0affb4 100644
--- a/module/Bsz/src/Bsz/ILL/Logic.php
+++ b/module/Bsz/src/Bsz/ILL/Logic.php
@@ -200,7 +200,7 @@ protected function determineStatus()
/**
* Returns the unique status code
- * TODO: this method shoudl return something from conffiguration. *
+ * TODO: this method should return something from configuration. *
* @return int
*/
public function getStatusCode()
@@ -221,7 +221,7 @@ public function getMessages()
{
/*
* TODO there are still some messages set in methods. These should be
- * removed to the configuration. It might be neccessary to split those
+ * removed to the configuration. It might be necessary to split those
* methods into exactly one task.
*/
$retval = $this->messages;
@@ -313,7 +313,7 @@ protected function checkSerialOrCollection(): bool
}
/**
- * Determin if an item is available locally. Checks for
+ * Determine if an item is available locally. Checks for
* * 924 entries
* * Parallel editions in SWB
* * Similar results from SWB (if network != SWB) *
@@ -492,7 +492,7 @@ protected function hasParallelEditions()
/**
* Check if it is a journal and available locally. Journals can always be
- * ordnered because we can't evauluate their exact holding dates.
+ * ordnered because we can't evaluate their exact holding dates.
* @return bool
*/
protected function checkJournalAvailable(): bool
diff --git a/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php b/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php
index 1007ed20060..9d852523972 100644
--- a/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php
+++ b/module/Bsz/src/Bsz/RecordDriver/SolrGviMarc.php
@@ -558,7 +558,7 @@ public function getURLs(): array
$ind2 = $field['i2'];
// we don't want to show licensed content
- // ind1,2 = 4,0 is probably lincensed content.
+ // ind1,2 = 4,0 is probably licensed content.
// only if we find a kostenfrei in |z, we use the link
// special case: DE-950 Proquest links are shown
if (!$is950 && $ind1 == 4 && $ind2 == 0) {
@@ -860,10 +860,10 @@ public function getVolumeNumber()
}
/**
- * get local Urls from 924|k and the correspondig linklabel 924|l
+ * get local Urls from 924|k and the corresponding linklabel 924|l
* - $924 is repeatable
- * - |k is repeatable, |l aswell
- * - we can have more than one isil ?is this true? maybe allways the first isil
+ * - |k is repeatable, |l as well
+ * - we can have more than one isil ?is this true? maybe always the first isil
* - different Urls from one instition may have different issues (is this true?)
* @return array
*/
@@ -883,7 +883,7 @@ public function getLocalUrls()
}
/**
- * Anonymous function, called bellow. It handles ONE url.
+ * Anonymous function, called below. It handles ONE url.
*
* @param $link
* @param $label
diff --git a/module/Bsz/src/Bsz/Resolver/Driver/Ill.php b/module/Bsz/src/Bsz/Resolver/Driver/Ill.php
index 2b5840ee743..00ea0d5a531 100644
--- a/module/Bsz/src/Bsz/Resolver/Driver/Ill.php
+++ b/module/Bsz/src/Bsz/Resolver/Driver/Ill.php
@@ -83,7 +83,7 @@ protected function downgradeOpenUrl($params)
}
}
- // remove date info for journals because users must choose themselfes.
+ // remove date info for journals because users must choose themselves.
if ($newParams['genre'] == 'journal') {
unset($newParams['date']);
}
diff --git a/module/BszTheme/src/BszTheme/ThemeInfo.php b/module/BszTheme/src/BszTheme/ThemeInfo.php
index 04d3d3150d2..ace49f0c0d5 100644
--- a/module/BszTheme/src/BszTheme/ThemeInfo.php
+++ b/module/BszTheme/src/BszTheme/ThemeInfo.php
@@ -20,7 +20,7 @@
namespace BszTheme;
/**
- * BSZ implementation of ThemeInfo, here we load all client specific ressources.
+ * BSZ implementation of ThemeInfo, here we load all client specific resources.
*
* @author Cornelius Amzar
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO.
+ This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/bodensee/templates/bsz/wlb/en.phtml b/themes/bodensee/templates/bsz/wlb/en.phtml
index d55e820854a..196104c89de 100644
--- a/themes/bodensee/templates/bsz/wlb/en.phtml
+++ b/themes/bodensee/templates/bsz/wlb/en.phtml
@@ -22,5 +22,5 @@
Provision times
-Occasionally there may be delays in the fulfilment of your orders from our external stock. Media that can be collected are listed in your account under "Reservation". If you have entered an e-mail address, you will be informed by selecting "Notification for provided items".
+Occasionally there may be delays in the fulfillment of your orders from our external stock. Media that can be collected are listed in your account under "Reservation". If you have entered an e-mail address, you will be informed by selecting "Notification for provided items".
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO. + This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/bodensee5/templates/bsz/wlb/en.phtml b/themes/bodensee5/templates/bsz/wlb/en.phtml
index d55e820854a..196104c89de 100644
--- a/themes/bodensee5/templates/bsz/wlb/en.phtml
+++ b/themes/bodensee5/templates/bsz/wlb/en.phtml
@@ -22,5 +22,5 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO. + This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/bsz/templates/bsz/mzub/en.phtml b/themes/bsz/templates/bsz/mzub/en.phtml
index 7ab5e78dafe..640fdf2e058 100644
--- a/themes/bsz/templates/bsz/mzub/en.phtml
+++ b/themes/bsz/templates/bsz/mzub/en.phtml
@@ -1,5 +1,5 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO. + This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de
diff --git a/themes/reichenau/templates/bsz/mzbihs/en.phtml b/themes/reichenau/templates/bsz/mzbihs/en.phtml
index 7a766c0aec8..fbdfe1dbe22 100644
--- a/themes/reichenau/templates/bsz/mzbihs/en.phtml
+++ b/themes/reichenau/templates/bsz/mzbihs/en.phtml
@@ -3,7 +3,7 @@
- This is a testapplication for connecting the Discovery System BOSS to the Intergated Library System FOLIO. + This is a testapplication for connecting the Discovery System BOSS to the Integrated Library System FOLIO.
For technical questions and suggestions: boss-support@bsz-bw.de