Skip to content

Commit

Permalink
[TASK] Fix some wrong spelling related to the word "exist"
Browse files Browse the repository at this point in the history
Fixed some wrong spelling related to the word "exist" in several places,
including docs, language files, error messages and comments.

Resolves: #90451
Releases: master
Change-Id: I8f1642a259fa76f1c3311042def04374fa66ade5
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63333
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Benni Mack <benni@typo3.org>
  • Loading branch information
IndyIndyIndy authored and bmack committed Feb 20, 2020
1 parent 8c06d87 commit 3ac9679
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Expand Up @@ -500,7 +500,7 @@ protected function getDataStructureIdentifierFromTcaArray(array $fieldTca, strin
$dataStructureIdentifier['dataStructureKey'] = 'default';
} else {
// The value of the ds_pointerField field points to a key in the ds array that does
// not exists, and there is no fallback either. This can happen if an extension brings
// not exist, and there is no fallback either. This can happen if an extension brings
// new flex form definitions and that extension is unloaded later. "Old" records of the
// extension could then still point to the no longer existing key in ds. We throw a
// specific exception here to give controllers an opportunity to catch this case.
Expand Down
2 changes: 1 addition & 1 deletion typo3/sysext/core/Classes/Package/PackageManager.php
Expand Up @@ -742,7 +742,7 @@ protected function savePackageStates()
$fileDescription .= "# should, however, never become necessary if you use the package commands.\n";

if (!@is_writable($this->packageStatesPathAndFilename)) {
// If file does not exists try to create it
// If file does not exist, try to create it
$fileHandle = @fopen($this->packageStatesPathAndFilename, 'x');
if (!$fileHandle) {
throw new Exception\PackageStatesFileNotWritableException(
Expand Down
Expand Up @@ -11,7 +11,7 @@ Description

TYPO3 Core TypoScript files were renamed from :file:`.txt` extension to :file:`.typoscript` and :file:`.tsconfig`.
The backward compatibility layer has been introduced for :typoscript:`<INCLUDE_TYPOSCRIPT` inclusion.
If including file with :file:`.txt` does not exists, then TYPO3 will try to load a file with :file:`.typoscript` extension.
If including file with :file:`.txt` does not exist, then TYPO3 will try to load a file with :file:`.typoscript` extension.


Impact
Expand Down
Expand Up @@ -208,7 +208,7 @@ The following functions are only available in **frontend** context:
| | | `[session("session:foo|bar") == 1234567]` |
+--------------------+------------+-----------------------------------------------------------------+
| site | String | get value from site configuration, or null if |
| | | no site was found or property does not exists |
| | | no site was found or property does not exist |
| | | |
| | | Example, matches if site identifier = foo |
| | | `[site("identifier") == "foo"]` |
Expand All @@ -217,7 +217,7 @@ The following functions are only available in **frontend** context:
| | | `[site("base") == "http://localhost"]` |
+--------------------+------------+-----------------------------------------------------------------+
| siteLanguage | String | get value from siteLanguage configuration, or |
| | | null if no site was found or property not exists |
| | | null if no site was found or property does not exist |
| | | |
| | | Example, match if siteLanguage locale = foo |
| | | `[siteLanguage("locale") == "de_CH"]` |
Expand Down
Expand Up @@ -560,7 +560,7 @@ protected function addAdditionalPropertyPathsFromHook(

$formElementType = $validationDto->getFormElementType();
if (!$this->isFormElementTypeDefinedInFormSetup($validationDto)) {
$message = 'Form element type "%s" does not exists in prototype configuration "%s"';
$message = 'Form element type "%s" does not exist in prototype configuration "%s"';
throw new PropertyException(
sprintf($message, $formElementType, $validationDto->getPrototypeName()),
1528633967
Expand Down
2 changes: 1 addition & 1 deletion typo3/sysext/form/Resources/Private/Language/Database.xlf
Expand Up @@ -40,7 +40,7 @@
<source>"%s" (no read access).</source>
</trans-unit>
<trans-unit id="tt_content.preview.notExistingdPersistenceIdentifier" resname="tt_content.preview.notExistingdPersistenceIdentifier" xml:space="preserve">
<source>The form "%s" does not exists.</source>
<source>The form "%s" does not exist.</source>
</trans-unit>
<trans-unit id="tt_content.preview.invalidFrameworkConfiguration" resname="tt_content.preview.invalidFrameworkConfiguration" xml:space="preserve">
<source>"%s" (Invalid ext:form configuration).</source>
Expand Down

0 comments on commit 3ac9679

Please sign in to comment.