From dc2115aec02c2d3a07b55850df04cc0995232ba5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Christian=20E=C3=9Fl?= <indy.essl@gmail.com>
Date: Fri, 28 Feb 2020 21:36:54 +0100
Subject: [PATCH] [BUGFIX] Fix spelling errors in ext:frontend
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Resolves: #90586
Releases: master
Change-Id: I229984ae44b0bc20dca1bbc919d7815e782c8db1
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63492
Tested-by: Björn Jacob <bjoern.jacob@tritum.de>
Tested-by: Alexander Schnitzler <git@alexanderschnitzler.de>
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Susanne Moog <look@susi.dev>
Reviewed-by: Björn Jacob <bjoern.jacob@tritum.de>
Reviewed-by: Alexander Schnitzler <git@alexanderschnitzler.de>
Reviewed-by: Susanne Moog <look@susi.dev>
---
 .../Classes/Controller/TypoScriptFrontendController.php       | 2 +-
 typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php       | 4 ++--
 .../Resources/Private/Language/locallang_csh_ttcontent.xlf    | 4 ++--
 .../TypoScript/ConditionMatching/ConditionMatcherTest.php     | 2 +-
 .../frontend/Tests/Functional/SiteHandling/MountPointTest.php | 2 +-
 .../Unit/ContentObject/FluidTemplateContentObjectTest.php     | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
index a88c20fe80ec..f242dd4e517b 100644
--- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
+++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
@@ -1494,7 +1494,7 @@ class TypoScriptFrontendController implements LoggerAwareInterface
     /**
      * Checks if visibility of the page is blocked upwards in the root line.
      *
-     * If any page in the root line is blocking visibility, true is returend.
+     * If any page in the root line is blocking visibility, true is returned.
      *
      * All pages from the blocking page downwards are removed from the root
      * line, so that the remaining pages can be used to relocate the page up
diff --git a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
index a7fc22c4b095..60b8954c229e 100644
--- a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
+++ b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
@@ -85,9 +85,9 @@ class AbstractPlugin
     ];
 
     /**
-     * Local pointer variabe array.
+     * Local pointer variable array.
      * Holds pointer information for the MVC like approach Kasper
-     * initially proposed
+     * initially proposed.
      *
      * @var array
      */
diff --git a/typo3/sysext/frontend/Resources/Private/Language/locallang_csh_ttcontent.xlf b/typo3/sysext/frontend/Resources/Private/Language/locallang_csh_ttcontent.xlf
index 3905044e145e..1c6e2bd15bf5 100644
--- a/typo3/sysext/frontend/Resources/Private/Language/locallang_csh_ttcontent.xlf
+++ b/typo3/sysext/frontend/Resources/Private/Language/locallang_csh_ttcontent.xlf
@@ -67,7 +67,7 @@ Displays a login box for website users. This is only useful if you have already
 Offers a selection of menus and a sitemap you can insert on a page.
 
 &lt;strong&gt;Insert records&lt;/strong&gt;
-This acts as placeholder for other records. With this Content Element, you can resuse multiple content elements from other pages.
+This acts as placeholder for other records. With this content element, you can reuse multiple content elements from other pages.
 
 &lt;strong&gt;Insert plugin&lt;/strong&gt;
 This will allows you to insert news, forums, guestbooks, lists of addresses, and other functionality. Plugins are typically provided by TYPO3 extensions. The available fields and required configuration depend on the extension.
@@ -267,7 +267,7 @@ xMOD_csh_corebe:wizard_table_wiz</source>
 				<source>You can attach multiple images to the Content Element.
 Depending on the configuration of TYPO3, you can attach images in many formats without worrying about size and compression. TYPO3's graphics processing handles these details for you.
 
-When you use the "Text &amp; Images" type, it's important to select a proper position for images. For this purpose, use the Position and Aligment selector. See link to "Page Content / Position" below.
+When you use the "Text &amp; Images" type, it's important to select a proper position for images. For this purpose, use the Position and Alignment selector. See link to "Page Content / Position" below.
 You can also display images in multiple columns and even enable an option that opens full size images when thumbnails are clicked.</source>
 			</trans-unit>
 			<trans-unit id="_image.seeAlso" resname="_image.seeAlso" xml:space="preserve">
diff --git a/typo3/sysext/frontend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php b/typo3/sysext/frontend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php
index f5e1775450c3..bfcb7e7a9d82 100644
--- a/typo3/sysext/frontend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php
+++ b/typo3/sysext/frontend/Tests/Functional/Configuration/TypoScript/ConditionMatching/ConditionMatcherTest.php
@@ -83,7 +83,7 @@ class ConditionMatcherTest extends FunctionalTestCase
      *
      * @test
      */
-    public function usergroupConditionDoesNotMatchDefaulUserGroupIds(): void
+    public function usergroupConditionDoesNotMatchDefaultUserGroupIds(): void
     {
         $this->setupFrontendUserContext([0, -1]);
         $subject = $this->getConditionMatcher();
diff --git a/typo3/sysext/frontend/Tests/Functional/SiteHandling/MountPointTest.php b/typo3/sysext/frontend/Tests/Functional/SiteHandling/MountPointTest.php
index 369b92e4b5d2..cf9b75daf15f 100644
--- a/typo3/sysext/frontend/Tests/Functional/SiteHandling/MountPointTest.php
+++ b/typo3/sysext/frontend/Tests/Functional/SiteHandling/MountPointTest.php
@@ -519,7 +519,7 @@ class MountPointTest extends AbstractTestCase
      * @dataProvider mountPointPagesShowContentAsConfiguredDataProvider
      * @test
      * @group not-postgres
-     * Does not work on postres currenly due to setUpFrontendRootPage which does not work with the database snapshotting
+     * Does not work on postgres currently due to setUpFrontendRootPage which does not work with the database snapshotting
      */
     public function mountPointPagesShowContentAsConfigured(string $uri, string $expected)
     {
diff --git a/typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php b/typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
index 5438beb670af..6acf762839ae 100644
--- a/typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
+++ b/typo3/sysext/frontend/Tests/Unit/ContentObject/FluidTemplateContentObjectTest.php
@@ -758,7 +758,7 @@ class FluidTemplateContentObjectTest extends UnitTestCase
     /**
      * @test
      */
-    public function renderCallsRenderOnStandaloneViewie(): void
+    public function renderCallsRenderOnStandaloneView(): void
     {
         $this->addMockViewToSubject();
         $this->standaloneView
-- 
GitLab