diff --git a/typo3/sysext/backend/Classes/Controller/FormInlineAjaxController.php b/typo3/sysext/backend/Classes/Controller/FormInlineAjaxController.php index 45bc2478f3ddf3f4da49edfaa0d0e071f5be4e0a..7f1e8c4b9c5ed4ff1afca244044b1b9be2ec852b 100644 --- a/typo3/sysext/backend/Classes/Controller/FormInlineAjaxController.php +++ b/typo3/sysext/backend/Classes/Controller/FormInlineAjaxController.php @@ -367,7 +367,7 @@ class FormInlineAjaxController extends AbstractFormEngineAjaxController // pick the uid field from the array ... Basically, we need the uid of the 'default language' record, // since this is used in JS to locate and remove the 'shadowed' container. // @todo: Find out if this is really necessary that sometimes ['databaseRow']['l10n_parent'][0] - // is resolved to a direct uid, and sometimes it's a array with items. Could this be harmonized? + // is resolved to a direct uid, and sometimes it's an array with items. Could this be harmonized? $transOrigPointerFieldValue = $transOrigPointerFieldValue['uid']; } } diff --git a/typo3/sysext/core/Classes/Authentication/Mfa/MfaProviderPropertyManager.php b/typo3/sysext/core/Classes/Authentication/Mfa/MfaProviderPropertyManager.php index b0e59f0285e9e0df31e02ea0839c8b1c38b29c97..dfbedb25ad4d1968a73c69086bfba1ddd4d65313 100644 --- a/typo3/sysext/core/Classes/Authentication/Mfa/MfaProviderPropertyManager.php +++ b/typo3/sysext/core/Classes/Authentication/Mfa/MfaProviderPropertyManager.php @@ -120,7 +120,7 @@ class MfaProviderPropertyManager implements LoggerAwareInterface /** * Create a new provider entry for the current user - * Note: If a entry already exists, use updateProperties() instead. + * Note: If an entry already exists, use updateProperties() instead. * This can be checked with hasProviderEntry(). * * @param array $properties diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php index 8a103da28e25644d32b4c3c0302ac9eb339c031c..7fa5478c738dca228b621d515f6c0937da6eac6e 100644 --- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php +++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php @@ -3655,7 +3655,7 @@ class DataHandler implements LoggerAwareInterface // When a record is copied in workspace (eg. to create a delete placeholder record for a live record), records // pointing to that record need a reference index update. This is for instance the case in FAL, if a sys_file_reference - // for a eg. tt_content record is marked as deleted. The tt_content record then needs a reference index update. + // that refers e.g. to a tt_content record is marked as deleted. The tt_content record then needs a reference index update. // This scenario seems to currently only show up if in workspaces, so the refindex update is restricted to this for now. if (!empty($workspaceOptions)) { $this->referenceIndexUpdater->registerUpdateForReferencesToItem($table, (int)$row['uid'], (int)$this->BE_USER->workspace); diff --git a/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php b/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php index 909c4c60de5509ab9a7ae007a157048f6ba2865d..bb41a529a720003a982a82026aaffa8a1760d9e6 100644 --- a/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php +++ b/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php @@ -275,7 +275,7 @@ class ExpressionBuilder } /** - * Creates a IN () comparison expression with the given arguments. + * Creates an IN () comparison expression with the given arguments. * * @param string $fieldName The fieldname. Will be quoted according to database platform automatically. * @param string|array $value The placeholder or the array of values to be used by IN() comparison. @@ -587,7 +587,7 @@ class ExpressionBuilder } /** - * Creates a AVG expression for the given field/alias. + * Creates an AVG expression for the given field/alias. * * @param string $fieldName * @param string|null $alias diff --git a/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php b/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php index 1933658bbbdd5f9d7e270ef9fd9d652bb112dfcc..f6bd131c31bbc2b3443a3a8998935e68ca7c1ede 100644 --- a/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php +++ b/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php @@ -304,7 +304,7 @@ class SchemaMigrator /** * doctrine/dbal detects both sqlite autoincrement variants (row_id alias and autoincrement) through assumptions * which have been made. TYPO3 reads the ext_tables.sql files as MySQL/MariaDB variant, thus not setting the - * autoincrement value to true for the row_id alias variant, which leads to a endless missmatch during database + * autoincrement value to true for the row_id alias variant, which leads to an endless missmatch during database * comparison. This method adopts the doctrine/dbal assumption and apply it to the meta schema to mitigate * endless database compare detections in these cases. * diff --git a/typo3/sysext/core/Classes/Package/FailsafePackageManager.php b/typo3/sysext/core/Classes/Package/FailsafePackageManager.php index 50468a5960ae298132f7c43f0c74a35922c0470b..bd1e4261078dc52ce4a8ebcfba5e2cfe7ae8986c 100644 --- a/typo3/sysext/core/Classes/Package/FailsafePackageManager.php +++ b/typo3/sysext/core/Classes/Package/FailsafePackageManager.php @@ -77,7 +77,7 @@ class FailsafePackageManager extends PackageManager } /** - * Create PackageStates.php if missing and LocalConfiguration exists, used to have a Install Tool session running + * Create PackageStates.php if missing and LocalConfiguration exists, used to have an Install Tool session running * * It is fired if PackageStates.php is deleted on a running instance, * all packages marked as "part of minimal system" are activated in this case. diff --git a/typo3/sysext/core/Classes/Page/JavaScriptModuleInstruction.php b/typo3/sysext/core/Classes/Page/JavaScriptModuleInstruction.php index 22cd793b72d981099da208a1160aa329d76ff216..e3bec489ecc3a36527516cd85c4ce9b008cec694 100644 --- a/typo3/sysext/core/Classes/Page/JavaScriptModuleInstruction.php +++ b/typo3/sysext/core/Classes/Page/JavaScriptModuleInstruction.php @@ -26,6 +26,7 @@ class JavaScriptModuleInstruction implements \JsonSerializable * @todo In future versions this might be ES6 module as well */ public const FLAG_LOAD_REQUIRE_JS = 1; + /** * Indicates all actions shall be applied globally to `top.window`. */ diff --git a/typo3/sysext/core/Classes/Resource/Security/StoragePermissionsAspect.php b/typo3/sysext/core/Classes/Resource/Security/StoragePermissionsAspect.php index 4e507d3c4f251a7b4077a1fc819bb020f9e6ec51..843f4f9c53045df9e6297c214cd4248f23affe12 100644 --- a/typo3/sysext/core/Classes/Resource/Security/StoragePermissionsAspect.php +++ b/typo3/sysext/core/Classes/Resource/Security/StoragePermissionsAspect.php @@ -26,7 +26,7 @@ use TYPO3\CMS\Core\Resource\ResourceStorage; * based on user or group configuration. * * We do not have AOP in TYPO3 for now, thus the aspect which - * deals with resource security is a EventListener which reacts on storage object creation. + * deals with resource security is an EventListener which reacts on storage object creation. * * @internal this is an Event Listener, and not part of TYPO3 Core API. */ diff --git a/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-87937-TCAOption_selicon_field_path_removed.rst b/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-87937-TCAOption_selicon_field_path_removed.rst index 16a446a38247ac930561250648b66bcf01f95f57..b58aa1de83a760f02ac9346ef957b31a6f61c904 100644 --- a/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-87937-TCAOption_selicon_field_path_removed.rst +++ b/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-87937-TCAOption_selicon_field_path_removed.rst @@ -31,6 +31,6 @@ Any TYPO3 installation with an extension providing TCA with :php:`selicon_field_ Migration ========= -Remove the option :php:`selicon_field_path` and use a inline relation to file references in :php:`selicon_field` instead. +Remove the option :php:`selicon_field_path` and use an inline relation to file references in :php:`selicon_field` instead. .. index:: TCA, PartiallyScanned, ext:core diff --git a/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-88741-CHashCalculationInIndexedSearchRemoved.rst b/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-88741-CHashCalculationInIndexedSearchRemoved.rst index 3d6955f9c04bc45dc46e8854d3b8d9bedc2713a0..570b3100f464c7549af6c1657aa8f2b8a1531f90 100644 --- a/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-88741-CHashCalculationInIndexedSearchRemoved.rst +++ b/typo3/sysext/core/Documentation/Changelog/10.0/Breaking-88741-CHashCalculationInIndexedSearchRemoved.rst @@ -13,7 +13,7 @@ When indexing a page, the indexer of `Indexed search` previously kept the used c used "cHashParams" for storing search entries. This is not necessary anymore, as Site Handling now contains the relevant arguments already in the search entry as well. This can be removed now. -In addition, when setting up a Indexing configuration, the option to respect cHash is removed, +In addition, when setting up an Indexing configuration, the option to respect cHash is removed, as this is done automatically when needed. The public property :php:`TYPO3\CMS\IndexedSearch\Indexer->cHashParams` has been removed. diff --git a/typo3/sysext/core/Documentation/Changelog/10.4/Deprecation-90956-AlternativeFetchMethodsAndReportsForGeneralUtilitygetUrl.rst b/typo3/sysext/core/Documentation/Changelog/10.4/Deprecation-90956-AlternativeFetchMethodsAndReportsForGeneralUtilitygetUrl.rst index c0ab51f1a8d434857fec49b0b5210b0cfa3a7a30..6a39946ae9317bb264c872d6bc4fe1cbeae7d37c 100644 --- a/typo3/sysext/core/Documentation/Changelog/10.4/Deprecation-90956-AlternativeFetchMethodsAndReportsForGeneralUtilitygetUrl.rst +++ b/typo3/sysext/core/Documentation/Changelog/10.4/Deprecation-90956-AlternativeFetchMethodsAndReportsForGeneralUtilitygetUrl.rst @@ -12,7 +12,7 @@ Description The short-hand method :php:`GeneralUtility::getUrl()` provides a fast way to fetch the contents of a local file or remote URL. -For Remote URLs, TYPO3 v8 provides a object-oriented (PSR-7 compatible) way by using +For Remote URLs, TYPO3 v8 provides an object-oriented (PSR-7 compatible) way by using the :php:`RequestFactory->request($url, $method, $options)` API. Under the hood, the PHP library GuzzleHTTP is used, which evaluates what best option (e.g. curl library) should handle the download to TYPO3. diff --git a/typo3/sysext/core/Documentation/Changelog/11.1/Feature-93426-SVG-basedTreeForFolderNavigationWithFilter.rst b/typo3/sysext/core/Documentation/Changelog/11.1/Feature-93426-SVG-basedTreeForFolderNavigationWithFilter.rst index 083e8d4f163ace232d396ea81c7b8cf41ebf26a3..7b83eefbf5458fcd5f933d263f94611faa3f0a0c 100644 --- a/typo3/sysext/core/Documentation/Changelog/11.1/Feature-93426-SVG-basedTreeForFolderNavigationWithFilter.rst +++ b/typo3/sysext/core/Documentation/Changelog/11.1/Feature-93426-SVG-basedTreeForFolderNavigationWithFilter.rst @@ -23,7 +23,7 @@ Components, this functionality will be marked as deprecated in later TYPO3 v11 r The main benefit of the Folder Navigation based on the SVG tree is the enhanced loading functionality. This way, the Folder Navigation has the exact same -look&feel as the Page Tree, and also now contains a always-enabled filter +look&feel as the Page Tree, and also now contains an always-enabled filter on top of the Component, just as the Page Tree Navigation Component. diff --git a/typo3/sysext/core/Documentation/Changelog/11.2/Feature-73176-FilterableTreesInRecordSelectorsAndLinkPickers.rst b/typo3/sysext/core/Documentation/Changelog/11.2/Feature-73176-FilterableTreesInRecordSelectorsAndLinkPickers.rst index 5466fb9a6144f10c4f64abf0e385d5686fe30832..7d352453fc40fad610cbdbff9686b0b6674c9fd7 100644 --- a/typo3/sysext/core/Documentation/Changelog/11.2/Feature-73176-FilterableTreesInRecordSelectorsAndLinkPickers.rst +++ b/typo3/sysext/core/Documentation/Changelog/11.2/Feature-73176-FilterableTreesInRecordSelectorsAndLinkPickers.rst @@ -18,7 +18,7 @@ backend. The Record Selectors are used when e.g. choosing a :guilabel:`Target Page` for a :guilabel:`Shortcut Page`, or selecting a :guilabel:`Storage Page` in a plugin. -The file selectors are used when choosing a file for a IRRE-based FAL-based +The file selectors are used when choosing a file for an IRRE-based FAL-based file reference. Link Pickers are used when linking to a specific page, content element, file, diff --git a/typo3/sysext/core/Documentation/Changelog/11.3/Deprecation-94377-ExtbaseObjectManager-getEmptyObject.rst b/typo3/sysext/core/Documentation/Changelog/11.3/Deprecation-94377-ExtbaseObjectManager-getEmptyObject.rst index faf1adac4c3a7477bd182d485e4038b1e48e8566..37cd9232ac61489dd5c951ebc9341c455f2179b5 100644 --- a/typo3/sysext/core/Documentation/Changelog/11.3/Deprecation-94377-ExtbaseObjectManager-getEmptyObject.rst +++ b/typo3/sysext/core/Documentation/Changelog/11.3/Deprecation-94377-ExtbaseObjectManager-getEmptyObject.rst @@ -13,7 +13,7 @@ Extbase has the odd behavior that :php:`\TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface` objects - typically classes in :file:`Classes/Domain/Model` of Extbase enabled extensions - don't call :php:`__construct` when the persistence layer -"thaws" a model from database - typically when a Extbase +"thaws" a model from database - typically when an Extbase :php:`Domain/Repository` uses a :php:`->findBy*` method. As a side-effect of switching away from Extbase :php:`ObjectManager` towards diff --git a/typo3/sysext/core/Documentation/Changelog/11.4/Deprecation-94687-SoftReferenceIndex.rst b/typo3/sysext/core/Documentation/Changelog/11.4/Deprecation-94687-SoftReferenceIndex.rst index 32044bed3b32e4e334607dc6380a0144ea71217a..a62d660d540de3701e72b804a52eaf13543516df 100644 --- a/typo3/sysext/core/Documentation/Changelog/11.4/Deprecation-94687-SoftReferenceIndex.rst +++ b/typo3/sysext/core/Documentation/Changelog/11.4/Deprecation-94687-SoftReferenceIndex.rst @@ -49,7 +49,7 @@ The following methods are marked as deprecated. Calling these methods will trigg Soft reference parsers must implement :php:`TYPO3\CMS\Core\DataHandling\SoftReference\SoftReferenceParserInterface`. -Otherwise a a PHP :php:`E_USER_DEPRECATED` error will be triggered and an exception will be thrown +Otherwise a PHP :php:`E_USER_DEPRECATED` error will be triggered and an exception will be thrown in TYPO3 v12. Affected Installations diff --git a/typo3/sysext/core/Documentation/Changelog/11.5.x/Important-93635-AddMailConfigurationForSettingSmtpDomain.rst b/typo3/sysext/core/Documentation/Changelog/11.5.x/Important-93635-AddMailConfigurationForSettingSmtpDomain.rst index 2ca8cffb4119ca357660e3f3621223c313940ce3..4a34f3051225927131ccf9f31931ca7ef229095f 100644 --- a/typo3/sysext/core/Documentation/Changelog/11.5.x/Important-93635-AddMailConfigurationForSettingSmtpDomain.rst +++ b/typo3/sysext/core/Documentation/Changelog/11.5.x/Important-93635-AddMailConfigurationForSettingSmtpDomain.rst @@ -10,7 +10,7 @@ Description =========== Some smtp-relay-server require to set the domain under which the sender is -sending a email. As default the EsmtpTransport from Symfony will use the current +sending an email. As default the EsmtpTransport from Symfony will use the current domain/IP of the host or container. This will be sufficient for the most of the servers but some servers requires a valid domain is passed. If this isn't done, sending emails via such servers will fail. diff --git a/typo3/sysext/core/Documentation/Changelog/11.5/Deprecation-95349-TypoScriptPageincludeCSSincludeCSSLibsimport.rst b/typo3/sysext/core/Documentation/Changelog/11.5/Deprecation-95349-TypoScriptPageincludeCSSincludeCSSLibsimport.rst index 9c0fd0d74f424b89d3ebedfe16a86dc5ad1477bb..c84e9eef73cbe65dfc2b58365412131cc4ed3995 100644 --- a/typo3/sysext/core/Documentation/Changelog/11.5/Deprecation-95349-TypoScriptPageincludeCSSincludeCSSLibsimport.rst +++ b/typo3/sysext/core/Documentation/Changelog/11.5/Deprecation-95349-TypoScriptPageincludeCSSincludeCSSLibsimport.rst @@ -56,7 +56,7 @@ allows to load a file directly when interpreting the HTML of the browser, instead of first interpreting the HTML, then the CSS and have a blocking call to an external URL to continue interpreting the CSS. -It is recommended to use the :html:`<link>` tag or create a inlineCSS TypoScript +It is recommended to use the :html:`<link>` tag or create an inlineCSS TypoScript manually to load such a file with the :css:`@import` syntax. .. index:: TypoScript, NotScanned, ext:frontend diff --git a/typo3/sysext/core/Documentation/Changelog/7.0/Breaking-33805-ClickMenuRewrite.rst b/typo3/sysext/core/Documentation/Changelog/7.0/Breaking-33805-ClickMenuRewrite.rst index 86cdca2989fadf5440f469c633f84a8283d8d4a1..ccaad0a68d32c60139079f31d74ae11276e166ff 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.0/Breaking-33805-ClickMenuRewrite.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.0/Breaking-33805-ClickMenuRewrite.rst @@ -11,7 +11,7 @@ Description =========== The ClickMenu has seen some major changes under the hood. This implies some refactoring within JavaScript where existing -functionality is replaced by a AMD Module based on jQuery. The following JS methods are now replaced by respective +functionality is replaced by an AMD Module based on jQuery. The following JS methods are now replaced by respective methods: - showClickmenu_raw() diff --git a/typo3/sysext/core/Documentation/Changelog/7.2/Feature-65585-AddTCATypeImage_manipulation.rst b/typo3/sysext/core/Documentation/Changelog/7.2/Feature-65585-AddTCATypeImage_manipulation.rst index 0e4edac8674da664f9c7ea5ba593138acae6b0a3..c8e94891e40ab42c7376de98fba4f0010362ba04 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.2/Feature-65585-AddTCATypeImage_manipulation.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.2/Feature-65585-AddTCATypeImage_manipulation.rst @@ -10,7 +10,7 @@ See :issue:`65585` Description =========== -TCA type `imageManipulation` brings a image manipulation wizard to the core. +TCA type `imageManipulation` brings an image manipulation wizard to the core. This first version brings image cropping with the possibility to set a certain aspect ratio for the cropped area. The diff --git a/typo3/sysext/core/Documentation/Changelog/7.3/Feature-66709-AddTemplateRootPathsSupportToFluidViewStandaloneView.rst b/typo3/sysext/core/Documentation/Changelog/7.3/Feature-66709-AddTemplateRootPathsSupportToFluidViewStandaloneView.rst index 4473b9cbdba88f315df9a0e6fe0c200742784122..a430ae176c3886e7d1755302842b43a2977cb12b 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.3/Feature-66709-AddTemplateRootPathsSupportToFluidViewStandaloneView.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.3/Feature-66709-AddTemplateRootPathsSupportToFluidViewStandaloneView.rst @@ -37,7 +37,7 @@ Basic example: -Example of rendering a email template: +Example of rendering an email template: .. code-block:: php diff --git a/typo3/sysext/core/Documentation/Changelog/7.4/Deprecation-67670-DeprecateCustomSingletonLogicInGeneralUtilitygetUserObj.rst b/typo3/sysext/core/Documentation/Changelog/7.4/Deprecation-67670-DeprecateCustomSingletonLogicInGeneralUtilitygetUserObj.rst index 142a9abb9970c03d58e4a62891c3dfe7b936599a..7171f02625786da8f12c45181122031f173411f7 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.4/Deprecation-67670-DeprecateCustomSingletonLogicInGeneralUtilitygetUserObj.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.4/Deprecation-67670-DeprecateCustomSingletonLogicInGeneralUtilitygetUserObj.rst @@ -11,7 +11,7 @@ Description =========== The functionality of instantiating classes only once by calling `GeneralUtility::getUserObj($className)` multiple times -while having a `$className` that is prepended with a ampersand ("&") has been marked as deprecated. +while having a `$className` that is prepended with an ampersand ("&") has been marked as deprecated. An example of the deprecated behaviour in the ext_localconf.php of an extension: diff --git a/typo3/sysext/core/Documentation/Changelog/7.5/Feature-56726-TriggerMetadataExtractionAfterFileUpload.rst b/typo3/sysext/core/Documentation/Changelog/7.5/Feature-56726-TriggerMetadataExtractionAfterFileUpload.rst index 621dd8c2a97c4c5d6fcfafc5a82aa4132b1165e2..66c9d6f4537e2d0c54099c59f8e254b0a2d2f006 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.5/Feature-56726-TriggerMetadataExtractionAfterFileUpload.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.5/Feature-56726-TriggerMetadataExtractionAfterFileUpload.rst @@ -12,7 +12,7 @@ Description Before #56726 the metadata extraction was only called through the extract metadata scheduler task. -So when a editor uploaded a new file he had to wait until the scheduler task had +So when an editor uploaded a new file he had to wait until the scheduler task had been triggered again and extracted the metadata. Now the metadata extraction is by default triggered after adding/uploading a file diff --git a/typo3/sysext/core/Documentation/Changelog/7.5/Feature-61799-ImprovedHandlingOfOnlineMedia.rst b/typo3/sysext/core/Documentation/Changelog/7.5/Feature-61799-ImprovedHandlingOfOnlineMedia.rst index 6223a84bbf29f50f519e6aabc2bbe526debb06d4..c560e4da86acef2b2b20618f8ca6ae8fb560c63f 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.5/Feature-61799-ImprovedHandlingOfOnlineMedia.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.5/Feature-61799-ImprovedHandlingOfOnlineMedia.rst @@ -10,7 +10,7 @@ See :issue:`61799` Description =========== -Editors can now use YouTube and Vimeo videos (online media) just like a any other file, organising them just like any +Editors can now use YouTube and Vimeo videos (online media) just like any other file, organising them just like any other file in the file list and selecting them in element browser to use in a CE or any other record. Adding new online media files is done providing the URL to online media. The matching helper class will fetch the needed metadata and supply an image that will be used as preview if available. diff --git a/typo3/sysext/core/Documentation/Changelog/7.5/Feature-66366-IntroducedMediaViewHelper.rst b/typo3/sysext/core/Documentation/Changelog/7.5/Feature-66366-IntroducedMediaViewHelper.rst index 13d7fabe046f427a22f377933a76687a5c92e903..17eae9619af3d1169744a28efb79b254daa280bb 100644 --- a/typo3/sysext/core/Documentation/Changelog/7.5/Feature-66366-IntroducedMediaViewHelper.rst +++ b/typo3/sysext/core/Documentation/Changelog/7.5/Feature-66366-IntroducedMediaViewHelper.rst @@ -14,7 +14,7 @@ In order to comfortably render video, audio and all other file types with a regi introduced with #61800) in FE, the `MediaViewHelper` has been added. The `MediaViewHelper` first checks if there is a Renderer present for the given file. If not, it will as fallback -render a image tag. This way it is a replacement for the `ImageViewHelper` in most cases when rendering video and +render an image tag. This way it is a replacement for the `ImageViewHelper` in most cases when rendering video and audio tags. Examples: diff --git a/typo3/sysext/core/Documentation/Changelog/8.5/Breaking-78581-HookGetFlexFormDSClassNoLongerCalled.rst b/typo3/sysext/core/Documentation/Changelog/8.5/Breaking-78581-HookGetFlexFormDSClassNoLongerCalled.rst index 76a7d00acf9a5db3c7c626b7e358ec4def6e7aba..fac78c3681c60d2827a5244e82fb7a4e7aa056c0 100644 --- a/typo3/sysext/core/Documentation/Changelog/8.5/Breaking-78581-HookGetFlexFormDSClassNoLongerCalled.rst +++ b/typo3/sysext/core/Documentation/Changelog/8.5/Breaking-78581-HookGetFlexFormDSClassNoLongerCalled.rst @@ -50,7 +50,7 @@ of them beforehand: :php:`parseDataStructureByIdentifierPreProcess` to specify an own "identifier" syntax and to resolve that syntax to a data structure later: flux_ -* EXT:gridelements: Similar to flux, gridelements has a own logic to choose which specific +* EXT:gridelements: Similar to flux, gridelements has an own logic to choose which specific data structure should be used. However, the data structures are located in database row fields, so the "record" syntax of the core can be re-used to refer to those. gridelements uses the hook :php:`getDataStructureIdentifierPreProcess` together with a small implementation in diff --git a/typo3/sysext/core/Documentation/Changelog/8.7/Feature-80579-ImprovedJavaScriptModalAPI.rst b/typo3/sysext/core/Documentation/Changelog/8.7/Feature-80579-ImprovedJavaScriptModalAPI.rst index 63149c05bb91bfbfcc36378eec57aec0903c530c..d3f5b2c809d6133064cd894e75632022365e901b 100644 --- a/typo3/sysext/core/Documentation/Changelog/8.7/Feature-80579-ImprovedJavaScriptModalAPI.rst +++ b/typo3/sysext/core/Documentation/Changelog/8.7/Feature-80579-ImprovedJavaScriptModalAPI.rst @@ -75,8 +75,8 @@ Modal.types.ajax Content will be grabbed from a url set in the option `content` Modal.types.iframe - Url provided in the option `content` will be loaded in a iframe in the modal. - Also it will automaticly set the title from the contained document. + Url provided in the option `content` will be loaded in an iframe in the modal. + Also it will automatically set the title from the contained document. Title @@ -216,9 +216,9 @@ Size While the modal itself adapts to the window, there are several options available to limit the maximal size of the modal. The sizes :js:`Modal.sizes.small` and the -default :js:`Modal.sizes.default` will automaticly adapt to the content and are only +default :js:`Modal.sizes.default` will automatically adapt to the content and are only limited to the width of the modal. :js:`Modal.sizes.large` and :js:`Modal.sizes.full` -are designed to contain a undefined lenth of content in a fixed sized modal. +are designed to contain a undefined length of content in a fixed sized modal. These are suited best for :js:`Modal.types.ajax` or :js:`Modal.types.iframe` content. .. code-block:: javascript diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-79777-AddedDeletedColumnForSchedulerTasks.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-79777-AddedDeletedColumnForSchedulerTasks.rst index 4d7dbf978a167b4b7fb89641d59e9608806d57c2..5a60e07cf2af8ba456bb7ab6d13af448da09f55e 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-79777-AddedDeletedColumnForSchedulerTasks.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-79777-AddedDeletedColumnForSchedulerTasks.rst @@ -9,7 +9,7 @@ See :issue:`79777` Description =========== -Instead of deleting the record directly in the database, a a "deleted" column was added for ``tx_scheduler_task`` +Instead of deleting the record directly in the database, a "deleted" column was added for ``tx_scheduler_task`` in a way to have developers / admins revive a task later-on. diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82572-RDCTFunctionalityRemoved.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82572-RDCTFunctionalityRemoved.rst index 7600ee2a0757a2dd2508b81d441a7bd850e482e8..ac1b8a986aed2d79cc8a5084c8b463df0178fc76 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82572-RDCTFunctionalityRemoved.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82572-RDCTFunctionalityRemoved.rst @@ -38,7 +38,7 @@ Calling :php:`$TSFE->sendRedirect()`, :php:`$TSFE->updateMD5paramsRecord()` and :php:`GeneralUtility::makeRedirectUrl()` will result in a fatal PHP error. Accessing the now non-existent property :php:`$TSFE->RDCT` will trigger a PHP notice, as well -as setting up a new instance of `TypoScriptFrontendController` with a eighth parameter. +as setting up a new instance of `TypoScriptFrontendController` with an eighth parameter. Accessing the database table `cache_md5params` will also lead to unexpected results as this table does not exist in new installations anymore. diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82768-ConfigurationOptionsForImageManipulationPHPAPI.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82768-ConfigurationOptionsForImageManipulationPHPAPI.rst index ab8e6a1a8d768baf04e3d66abf91cc226a57b4c6..534a81c2831333ef68992db205b176a7ba64c52b 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82768-ConfigurationOptionsForImageManipulationPHPAPI.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82768-ConfigurationOptionsForImageManipulationPHPAPI.rst @@ -50,7 +50,7 @@ Setting any of the PHP properties above will have no effect anymore. Affected Installations ====================== -Any TYPO3 installation with a extension accessing directly GraphicalFunctions or GifBuilder API +Any TYPO3 installation with an extension accessing directly GraphicalFunctions or GifBuilder API via PHP and using any of the properties above. diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82899-MoreRestrictingChecksForAPIMethodsInExtensionManagementUtility.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82899-MoreRestrictingChecksForAPIMethodsInExtensionManagementUtility.rst index 1ea3022f8d3c0fd0037e9d587fa481e87053d6ff..b5eadd38c0032ca66276d8d5df04b766c7c4bebe 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82899-MoreRestrictingChecksForAPIMethodsInExtensionManagementUtility.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82899-MoreRestrictingChecksForAPIMethodsInExtensionManagementUtility.rst @@ -38,6 +38,6 @@ Migration ========= Add the required parameters to the API calls in your extension registration files, typically -located within :file:`ext_localconf.php`, :file:`ext_tables.php` or :file:`Configuration/TCA/*` of a extension. +located within :file:`ext_localconf.php`, :file:`ext_tables.php` or :file:`Configuration/TCA/*` of an extension. .. index:: PHP-API, PartiallyScanned diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-78410-DeprecatePopoverMemberInstanceInTYPO3GlobalObject.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-78410-DeprecatePopoverMemberInstanceInTYPO3GlobalObject.rst index 17cb335df52f099eaeda204690f4fba61f52eed5..90a6df0bc5d8c4817d1463c93f6cf57db3600f9c 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-78410-DeprecatePopoverMemberInstanceInTYPO3GlobalObject.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-78410-DeprecatePopoverMemberInstanceInTYPO3GlobalObject.rst @@ -33,7 +33,7 @@ Usage in TypeScript: import Popover = require('TYPO3/CMS/Backend/Popover'); -To use popovers in a amd module, add it as a dependency and a corresponding argument to the anonymous function: +To use popovers in an amd module, add it as a dependency and a corresponding argument to the anonymous function: .. code-block:: javascript diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-82899-ExtensionManagementUtilityMethods.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-82899-ExtensionManagementUtilityMethods.rst index 0bccc02a81ac402efc728eb024825f65a9035a7e..b598942b8e5a5f1370e9f3e3fd613566ff7d2425 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-82899-ExtensionManagementUtilityMethods.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.0/Deprecation-82899-ExtensionManagementUtilityMethods.rst @@ -16,7 +16,7 @@ The following methods have been marked as deprecated in :php:`ExtensionManagemen * :php:`removeCacheFiles()` Additionally the second method parameter of :php:`ExtensionManagementUtility::isLoaded()` to -throw a exception when an extension is not loaded, has been marked as deprecated, and should not +throw an exception when an extension is not loaded, has been marked as deprecated, and should not be used anymore. diff --git a/typo3/sysext/core/Documentation/Changelog/9.3/Deprecation-85124-RedirectingUrlHandlerHookConcept.rst b/typo3/sysext/core/Documentation/Changelog/9.3/Deprecation-85124-RedirectingUrlHandlerHookConcept.rst index 2d3fee5125cb8f407a4f3eefcbf77f7ed3f4a1bb..7ce0b03f11d2c76c607a61fc46f050319dda9aa8 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.3/Deprecation-85124-RedirectingUrlHandlerHookConcept.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.3/Deprecation-85124-RedirectingUrlHandlerHookConcept.rst @@ -12,7 +12,7 @@ Description The URL handler concept introduced in TYPO3 v7 to allow pages to do redirects has been deprecated in favor of using PSR-7 / PSR-15 middlewares. -The Redirect URL handlers were used for e.g. jumpURLs, pages that should redirect to a external URL +The Redirect URL handlers were used for e.g. jumpURLs, pages that should redirect to an external URL or special handlings registered via the :php:`\TYPO3\CMS\Frontend\Http\UrlHandlerInterface`. All functionality and methods have been marked as deprecated and will be removed in TYPO3 v10.0. diff --git a/typo3/sysext/core/Documentation/Changelog/9.4/Breaking-85761-AuthenticationChainChanges.rst b/typo3/sysext/core/Documentation/Changelog/9.4/Breaking-85761-AuthenticationChainChanges.rst index 1af04e730184b277923fec1f3e0b726982e6fdba..c4408474eee0c3a84182fc7d5bc2a28dd5facc0d 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.4/Breaking-85761-AuthenticationChainChanges.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.4/Breaking-85761-AuthenticationChainChanges.rst @@ -45,7 +45,7 @@ Impact ====== If an instance provides additional authentication services, and if one of that services does -not return correct authentication values, this may open a authentication bypass security issue +not return correct authentication values, this may open an authentication bypass security issue when upgrading to TYPO3 v9. diff --git a/typo3/sysext/core/Documentation/Changelog/9.4/Deprecation-85902-IMGMENUGMENU.rst b/typo3/sysext/core/Documentation/Changelog/9.4/Deprecation-85902-IMGMENUGMENU.rst index 6af0368b5c0f219d2c150410556b0963507d7d97..43f0cca2bf8edce35179104099190cad409480d5 100644 --- a/typo3/sysext/core/Documentation/Changelog/9.4/Deprecation-85902-IMGMENUGMENU.rst +++ b/typo3/sysext/core/Documentation/Changelog/9.4/Deprecation-85902-IMGMENUGMENU.rst @@ -10,7 +10,7 @@ Description =========== Rendering a Hierarchical Menu via TypoScript previously allowed various rendering methods, namely textual (`TMENU`), -but also rendering menu items as images (`GMENU`) or as a image map (`IMGMENU`). Both graphical possibilities +but also rendering menu items as images (`GMENU`) or as an image map (`IMGMENU`). Both graphical possibilities have been marked as deprecated, as it is considered bad practice building websites nowadays - images with a fixed width, and text within images has various drawbacks in terms of accessibility and responsive renderings. diff --git a/typo3/sysext/core/Resources/Private/Language/locallang_mfa_provider.xlf b/typo3/sysext/core/Resources/Private/Language/locallang_mfa_provider.xlf index 05bb40decf43951120a0af67995198456f21c4cd..02f007a803e740aa3c660eb681d1a30a38873f85 100644 --- a/typo3/sysext/core/Resources/Private/Language/locallang_mfa_provider.xlf +++ b/typo3/sysext/core/Resources/Private/Language/locallang_mfa_provider.xlf @@ -8,7 +8,7 @@ </trans-unit> <trans-unit id="totp.description" resname="totp.description"> <source>This provider allows to authenticate with a single-use passcode which is based on the current time. - Each code is only valid for 30 seconds. You need a OTP application or device, supporting such tokens.</source> + Each code is only valid for 30 seconds. You need an OTP application or device, supporting such tokens.</source> </trans-unit> <trans-unit id="totp.setupInstructions" resname="totp.setupInstructions"> <source>The time-based one-time password provider enables you to strengthen your accounts' security by requiring a six-digit code on every login. diff --git a/typo3/sysext/core/Tests/Acceptance/Application/FormEngine/Inline1nCest.php b/typo3/sysext/core/Tests/Acceptance/Application/FormEngine/Inline1nCest.php index d3e4bc17bc38b4410357bcbbfa8a7d56f15611cd..68cb9e7313bb88fab465aaef72bdf770993d988a 100644 --- a/typo3/sysext/core/Tests/Acceptance/Application/FormEngine/Inline1nCest.php +++ b/typo3/sysext/core/Tests/Acceptance/Application/FormEngine/Inline1nCest.php @@ -63,11 +63,11 @@ class Inline1nCest public function hideAndUnhideInline1nInlineElement(ApplicationTester $I): void { - $I->wantTo('Can hide a Inline Element'); + $I->wantTo('Can hide an Inline Element'); $I->click('button span[data-identifier="actions-edit-hide"]', '[data-field-name^="[tx_styleguide_inline_1n_child]["]'); $I->waitForElement('[data-field-name^="[tx_styleguide_inline_1n_child]["].t3-form-field-container-inline-hidden'); $I->waitForElement('[data-field-name^="[tx_styleguide_inline_1n_child]["] button span[data-identifier="actions-edit-unhide"]'); - $I->wantTo('Can unhide a Inline Element'); + $I->wantTo('Can unhide an Inline Element'); $I->click('button span[data-identifier="actions-edit-unhide"]', '[data-field-name^="[tx_styleguide_inline_1n_child]["]'); $I->waitForElementNotVisible('[data-field-name^="[tx_styleguide_inline_1n_child]["].t3-form-field-container-inline-hidden', 2); } diff --git a/typo3/sysext/core/Tests/Functional/Authentication/Mfa/MfaProviderRegistryTest.php b/typo3/sysext/core/Tests/Functional/Authentication/Mfa/MfaProviderRegistryTest.php index 041acad0a1645140aae632371f7654b878093522..273e421b88bbd777a18e8482fc98223bae25d306 100644 --- a/typo3/sysext/core/Tests/Functional/Authentication/Mfa/MfaProviderRegistryTest.php +++ b/typo3/sysext/core/Tests/Functional/Authentication/Mfa/MfaProviderRegistryTest.php @@ -118,7 +118,7 @@ class MfaProviderRegistryTest extends FunctionalTestCase self::assertNull($this->subject->getFirstAuthenticationAwareProvider($this->user)); $this->activateProvider('recovery-codes'); - // Recovery codes can NOT be a authentication aware provider, without another provider being active + // Recovery codes can NOT be an authentication aware provider, without another provider being active self::assertNull($this->subject->getFirstAuthenticationAwareProvider($this->user)); $this->activateProvider('totp'); diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php index 56ecc061ab7f57e187d277258e83eee073a93289..b2e07b9b12e17a5893f4accc05cf2ed66ef1671f 100644 --- a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php +++ b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php @@ -558,7 +558,7 @@ class ActionTest extends AbstractActionTestCase } /** - * Checks for a page having a IRRE record. The page is then localized and + * Checks for a page having an IRRE record. The page is then localized and * an IRRE record is then added to the localized page * * @test diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php index f062d3eb558d072fc9e0fcb13b526c54d56e5a0b..9636245f42e77c9f4de07c2396466b2d15423bf3 100644 --- a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php +++ b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php @@ -653,7 +653,7 @@ class ActionTest extends AbstractActionTestCase } /** - * Checks for a page having a IRRE record. The page is then localized and + * Checks for a page having an IRRE record. The page is then localized and * an IRRE record is then added to the localized page * * @test diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php index e5a1e9a92c0d87f08248f9cde8faa24cef9f1364..fffbe964410c48cb8a47f6ed455593d3960698bf 100644 --- a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php @@ -737,7 +737,7 @@ abstract class AbstractActionTestCase extends AbstractDataHandlerActionTestCase /** * Create page localization in live, then move default language page in workspaces to different pages twice. * Verifies the page localization is moved together with the default language page. - * This should create "move" a overlay for the localization. + * This should create "move" an overlay for the localization. * * No ext:core implementation of this test since it is identical with * moveLocalizedPageToDifferentPageTwice() in non-workspace diff --git a/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php b/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php index 9cd668ebc15f59cc93736c06b22eee6b7d7e238f..fe3dedcddfe2c481158ab1928416f938d4862604 100644 --- a/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php +++ b/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php @@ -302,7 +302,7 @@ class DataMapper } if (!in_array($storageFormat, $dateTimeTypes, true)) { // Integer timestamps are also stored "as is" in the database, but are UTC by definition, - // so we convert the timestamp to a ISO representation. + // so we convert the timestamp to an ISO representation. $value = date('c', (int)$value); } // All date/datetime/time values are stored in the database "as is", independent of any time zone information. diff --git a/typo3/sysext/extensionmanager/Classes/Remote/TerExtensionRemote.php b/typo3/sysext/extensionmanager/Classes/Remote/TerExtensionRemote.php index 2e8a69bfdbd895e17915ab8bbac8fd8f365490c8..bfc60bb33cbe9935b9c2b804aaf0a6c495318027 100644 --- a/typo3/sysext/extensionmanager/Classes/Remote/TerExtensionRemote.php +++ b/typo3/sysext/extensionmanager/Classes/Remote/TerExtensionRemote.php @@ -89,7 +89,7 @@ class TerExtensionRemote implements ExtensionDownloaderRemoteInterface, Listable } /** - * TER provides a extensions.md5 which contains the hashsum of the current remote extensions.gz file. + * TER provides an extensions.md5 which contains the hashsum of the current remote extensions.gz file. * Let's check if this is the same, if so, it is not needed to download a new extensions.gz. * @return bool */ diff --git a/typo3/sysext/form/Classes/Controller/FormEditorController.php b/typo3/sysext/form/Classes/Controller/FormEditorController.php index 4f35733750959013f73c9073a167726615ada003..1988eea45c94f56f38087abb0166ce424972d486 100644 --- a/typo3/sysext/form/Classes/Controller/FormEditorController.php +++ b/typo3/sysext/form/Classes/Controller/FormEditorController.php @@ -96,7 +96,7 @@ class FormEditorController extends AbstractBackendController PathUtility::isExtensionPath($formPersistenceIdentifier) && !$this->formSettings['persistenceManager']['allowSaveToExtensionPaths'] ) { - throw new PersistenceManagerException('Edit a extension formDefinition is not allowed.', 1478265661); + throw new PersistenceManagerException('Edit an extension formDefinition is not allowed.', 1478265661); } $configurationService = GeneralUtility::makeInstance(ConfigurationService::class); diff --git a/typo3/sysext/form/Documentation/D/FinisherOptions/Index.rst b/typo3/sysext/form/Documentation/D/FinisherOptions/Index.rst index d30f65147c5b44c244e7b6188aca6d1920992f05..5ce65329752b559b71f9466a53501d98e00b4646 100644 --- a/typo3/sysext/form/Documentation/D/FinisherOptions/Index.rst +++ b/typo3/sysext/form/Documentation/D/FinisherOptions/Index.rst @@ -952,7 +952,7 @@ or create manually (not preferred):: This performs 2 database operations. One insert and one update. You can access the inserted uids through '{SaveToDatabase.insertedUids.<theArrayKeyNumberWithinOptions>}' -If you perform a insert operation, the value of the inserted database row will be stored within the FinisherVariableProvider. +If you perform an insert operation, the value of the inserted database row will be stored within the FinisherVariableProvider. <theArrayKeyNumberWithinOptions> references to the numeric options.* key. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst index 7952f6cc09602770adb91c411dce639f17d3b591..a4ffc2dced7b7ef0e607099178ea930655dadc07 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst @@ -556,7 +556,7 @@ formElementPropertyValidatorsDefinition Some inspector editors are able to validate it's values through a JavaScript methods. ``formElementPropertyValidatorsDefinition`` define basic configurations for such JavaScript validators. This JavaScript validators can be registered through ``getFormEditorApp().addPropertyValidationValidator()``. The first method argument is the identifier - for this validator. Every array key within ``formElementPropertyValidatorsDefinition`` must be equal to such a identifier. + for this validator. Every array key within ``formElementPropertyValidatorsDefinition`` must be equal to such an identifier. .. _typo3.cms.form.prototypes.<prototypeidentifier>.formeditor.formelementpropertyvalidatorsdefinition.<formelementpropertyvalidatoridentifier>.errormessage: @@ -608,7 +608,7 @@ formElementPropertyValidatorsDefinition.<formElementPropertyValidatorIdentifier> - :ref:`"Form editor"<concepts-formeditor>` :aspect:`Description` - The error message for a inspector editor property validator which is shown if the validation fails. + The error message for an inspector editor property validator which is shown if the validation fails. .. _typo3.cms.form.prototypes.<prototypeidentifier>.formeditor.formelementgroups: diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst index bf11e0bb58d0bcb6db8710e3d634f0895cd97488..0d718805530f923e2d90ea1ed2f4cd2391b6d769 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst @@ -560,7 +560,7 @@ formEditor.propertyCollections.validators.[*].identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.validators.*.editors: @@ -642,7 +642,7 @@ formEditor.propertyCollections.finishers.[*].identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. .. _typo3.cms.form.prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.finishers.*.editors: diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst index d16d392e62e351ca4f08366572e47edeee2b4869..3823e86bdc7cfcf09c0d826f5b56269b238e347e 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst @@ -108,7 +108,7 @@ propertyValidators This ``inspector editors`` is able to validate it's value through JavaScript methods. This JavaScript validators can be registered through ``getFormEditorApp().addPropertyValidationValidator()``. The first method argument is the identifier for such a validator. - Every array value within ``propertyValidators`` must be equal to such a identifier. + Every array value within ``propertyValidators`` must be equal to such an identifier. For example: diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst index 61b88a8ef829137a4eaf001b1a7125721b70ba90..632da824e5c117b0c92f9118520aa143ef8ebee6 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst @@ -157,7 +157,7 @@ propertyValidators This ``inspector editors`` is able to validate it's value through JavaScript methods. This JavaScript validators can be registered through ``getFormEditorApp().addPropertyValidationValidator()``. The first method argument is the identifier for such a validator. - Every array value within ``propertyValidators`` must be equal to such a identifier. + Every array value within ``propertyValidators`` must be equal to such an identifier. For example: diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst index 53a237875d731c13c323195a6bed0bdf14e32ece..f419bfee06d80a93c2e5a35fa32348fa26138c3f 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst index 2afabed9509abd196284cd9fc361b560cec20411..4c261883c448bd6d01e6b2a9cc616d3ea39f1f23 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.20.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst index da8064acdd6ffd4b142af21340f6dbd53b49261e..4ae90596d15a539b66790e9bc2c96ea444d37a02 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.30.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst index bacac0da0f7f3810dde5e425c92be9c160485a0f..7998795420c9cdcc2472c8e10638e4b9f5dddc01 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.40.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst index 48953143ecc83dcbb34f54885f1d498312541efa..333d9262a9ebb894e493565f6900515f63801779 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.50.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst index 7fc55dd6c1b9d0bf0f21351ff2ffd79caf85c437..609fdcdc0762414476ca2f278fa0b6fe2676ceab 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.60.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst index a0ae5ca0ee3ae503bb08e7cd1f865baf4deb5355..eac2c9f4faa4a7ba215729bd7c017beb1f17b31d 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.70.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst index f51538fe3b263bba213c9957db21b4c29cf248eb..ac185887d268498d960424e3bce120ed17c9bd92 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst index b45d285aabfb08d8318e51fc7cd6d4697c6d43c4..8f553eeb7aeeb0e44bdd073fea287b5e985ca810 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst index db6763e5113a553ad8e0a549b34ce134ca9ce79e..6f3639a2e01f0cbf57e66f6aa66b77e55c043cd0 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.20.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst index 1a4b7b679c19c80a5abca2a42090d9e637896605..1d6a76f696b6055025f53a1a32647991badff738 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.30.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst index 01674fcc3a656a5e25821ff38b4f61c1d05880b6..3c8d9df064c2124ae9efe986c8825c6f4428d50a 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.40.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst index b5fde5712174173464847b705968fe58e064b4d5..e4457c613c4c2ba03ad42fc2eacaa8ea689c6694 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.50.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst index d24ae186f970e73ae7b26f4aa5844fa970c85a9e..78fe9d74c4f12534a2ed58429fdb6fd5ef728dca 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.60.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst index 67803af99a5061144f4dd4245c5d67b0b1474f45..deb6953c3094e4c50690ecd0c9f32732351649dd 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.70.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst index 0d27aefd99e467c486eb69dbc1210d59bd4dddae..a20be2f91349b4b77f65cd3d1e77de8a63a9f43f 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst index 7bf1301f54916898e64098354e79ec4a2387ed66..6fa2b19d5514d7d8a5adc50a9cc3db555aa060e3 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst index 193b36e846cd50856b87c7702aa7a33d4e5ee84c..8410f9cb4f509c582f9c3006bbe070cd462761b7 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.40.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst index 72abe39ee72848c77a2baa2fc7dddc7ad430337a..b3a04bd04ea26fe34a35a1723207767af53a09d4 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing `<validatorIdentifier>`. + Identifies the validator which should be attached to the form element. Must be equal to an existing `<validatorIdentifier>`. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst index cf0deafba44ab7e32da313daa11492abfca5a4e1..8d3127d1acc47a48298b0ca4cb6f9e05b5feeddc 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.10.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst index b19d8625d39b9230160803c7d314254c2e365fec..745cffa654133b3bc799ae20a7873239f67be864 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.20.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst index 4619421ecdaaa4617cce4b6de536cb7745ba7149..fb2b5c431484d140c7af5f17335235636ca723fc 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.30.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst index afcb4b62d770de22664af2aeb20df867b9d44f06..73b0e50dfa78364f92a75f492fd7c0d4a8fea5ad 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.40.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst index 028115a13a680ad0c7cefbeeda51ba7bde8e8fbb..0b87cdbe596f2db16865fcbf95faaae434ae9615 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.50.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst index 79bdcf7c334c1417238563e717aee7410d413b53..fa106677e8eab54f60315a83604d9ee414ad8717 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.60.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst index 10ffec009561af22b613246d6916a708b45f799e..7932c3f9debd98479fce9501649d225afddc1209 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.70.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst index c8405b8b1214b34f4156211a67bcd26bec7f6290..683eeb17497dfa80e4661b92758594625baa601f 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.finishers.80.identifier - :ref:`"\<finisherIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>` :aspect:`Description` - Identifies the finisher which should be attached to the form definition. Must be equal to a existing ``<finisherIdentifier>``. + Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst index 8294391ef138dcfb3b420a2b0d884912571b9b63..25567f8fece7f83c2b9404149d90e54a394f77f1 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing `<validatorIdentifier>`. + Identifies the validator which should be attached to the form element. Must be equal to an existing `<validatorIdentifier>`. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst index dae340a4dff4f4b8b762b415cc16d819f345a987..517d3c61745f9814c8843e17971e47d413d9557d 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst index 2cf6c3af0738ce47e7b93a770fb5fa58703aa768..6e92eed2e195c787e30522cf7804cbedcb877028 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst index 712287be7fa6e7e932f3fcb846d183482cd0cf59..aaeb603c33d1eccb961090385bcfcab6cb9943c3 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst @@ -36,4 +36,4 @@ formEditor.propertyCollections.validators.60.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst index 41de14609244f13ecf035dfb3be83bdf1422f7f1..e361ee739a1ea69929d051e513c2aa1b421780fe 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.70.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst index db88313d3faacfd24ca214bbde43ca9f9ef1123e..89e203626a74e2d088e8652a858f78f7ac133f2b 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst index ded7144965100976918ed43a60ba029428afaafa..99e7be5ca912f4b24d3c0fd1d330c8044679b456 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.20.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst index 3b765ff3a9bfa6b5034c174b9ae009394fb4be95..343adfc25f61f0db59d00451f4a8a0039fb31f73 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.30.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst index c5eba80b0c2991ee92d2ef24341ce2e8a5fbcd74..50b0548df6dde3aa44eda37c27cff2f0928ef753 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.40.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst index 37b0667ab259735fbe05f99ec0adc3216a40b14e..a95cea7c3147d9e2770f32fbdfbfcc589722e643 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.50.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst index bb6efb8398edb0ba1fbef71983fb52b83239f792..592ad0a518359be33b0e623d43d2c0485dd3916c 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.60.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst index b14075b9540df06dc0037655f593856b70b43cab..1e3d0210fad48df7a6497f598cf7d7661eaa2481 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.70.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst index 45ec635a2008b16f958f853752435d0a548ddcb5..eca8deeff98dbd852817da93e994e92dd29d64e2 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst index 40cf3ef2348fbc04ab1f35868f30db5b4828440a..69eb739d1f57f912f74682ea4e622021fa225be3 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst index 20175e305dfbb52983289c5f0d93f59a2ee5a480..482efdd13a898b2a887e4e26e96299bcd9158b5a 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst index 4b02724ee040172a16183c52a68bd156230d559a..08e89b6be725f99085c5f0719f198589d16b8a3b 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.20.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst index a984f0276d3271a131f6d2e900c89061a24faeb6..8d2e12d17f35fbb7f0f6df257fa890a105e79076 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.30.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst index bd8cf4643cb43a7c3423983c3de0be0953839102..2e1d743d55a6df1c5af692087d07affa818c786e 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.40.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst index dbdebd5c455febf6e3b2c50668d2c7e5fe58c5ad..6c8686770fd04fe1ac5f36e3e5ec6d046ed6373d 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.50.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst index befcc12d6acdfce1b7bc5aaa968d30b75a713d52..a8ce17178253b2704fcd3717ff4e8f0f9be4063a 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.60.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst index 71ac1a028c75fae9c228dd081b095843e8ac2d93..a35ccc46c2ffefa1af30a443672abb5daedb68c6 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst index 40204b0c710142af2831f384950247873b34b6e0..86021cd64aac92513663f4b6007b7975766e0989 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.10.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst index a3521927ee4014a932cac7395dcaf0d2fb9e534a..0b5e2fd54e40e0315798d7bc2defaece228726ac 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.20.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst index ee9d426f7b7770508d98efa8b952fa78d8cc660c..53daf68285a65dbc25d5c3481b14b1b13c0dd764 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.30.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst index 8ef894411e4800c1ee0e9421bb4c21426aee6faa..bbcda5956ec3ef8cdf978dfce6e00deecaa3877c 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.40.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst index f4b485f40006bb4aee40f15f8fdc9552b2799a40..6ca56a42da025618cf89648e6fbb21b1ffbc3676 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.50.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst index e4d0dd8494ad27835d61a142466d87717b6b4d08..162adbc8f653a467b59a83865353c6d777667f29 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.60.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst index 281dd7c6850b40c56890c89fa24563faf05dae59..10a28a1cc5fc8aef83281bedf59bb1d20880b1de 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.70.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst index b575ba92d0cf1d4b899ab98dad7d8547cba46219..fbf281123d7025d60617946778c530ca19ff6f6c 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst index 1333404e8a329da5d55708e26e8140b89925adc5..48b130126d19d3958c3df47e124ce6a59eae211a 100644 --- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst +++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst @@ -31,4 +31,4 @@ formEditor.propertyCollections.validators.80.identifier - :ref:`"\<validatorIdentifier>"<typo3.cms.form.prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>` :aspect:`Description` - Identifies the validator which should be attached to the form element. Must be equal to a existing ``<validatorIdentifier>``. + Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``. diff --git a/typo3/sysext/frontend/Classes/Aspect/FileMetadataOverlayAspect.php b/typo3/sysext/frontend/Classes/Aspect/FileMetadataOverlayAspect.php index f169c5d5446d021beee37f81a6b61d8f8f40817a..56b374029abca9fa9f995b4639d3737b9df2aa08 100644 --- a/typo3/sysext/frontend/Classes/Aspect/FileMetadataOverlayAspect.php +++ b/typo3/sysext/frontend/Classes/Aspect/FileMetadataOverlayAspect.php @@ -24,7 +24,7 @@ use TYPO3\CMS\Core\Resource\Event\EnrichFileMetaDataEvent; use TYPO3\CMS\Core\Utility\GeneralUtility; /** - * This class deals with metadata translation as a event listener which reacts on an event MetadataRepository. + * This class deals with metadata translation as an event listener which reacts on an event MetadataRepository. * * The listener injects user permissions and mount points into the storage * based on user or group configuration. diff --git a/typo3/sysext/indexed_search/Classes/Service/DatabaseSchemaService.php b/typo3/sysext/indexed_search/Classes/Service/DatabaseSchemaService.php index 191b937e7b5549c906832fad25abd93eeacbe275..42d74e5a7800c333fe599fab5759222e379d26ed 100644 --- a/typo3/sysext/indexed_search/Classes/Service/DatabaseSchemaService.php +++ b/typo3/sysext/indexed_search/Classes/Service/DatabaseSchemaService.php @@ -26,7 +26,7 @@ use TYPO3\CMS\Core\Utility\GeneralUtility; final class DatabaseSchemaService { /** - * A event listener to inject the required mysql fulltext definition + * An event listener to inject the required mysql fulltext definition * to schema migration. * * @param AlterTableDefinitionStatementsEvent $event diff --git a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php index ce85728501e82125343edf5cdad2310dcc8501bc..dc12147f75caf0b5730ea3545d6e281b05d8d07a 100644 --- a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php +++ b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php @@ -59,7 +59,7 @@ Automatic Repair of Errors: - Silently deleting the orphaned records. In theory they should not be used anywhere in the system, but there could be references. See below for more details on this matter. Manual repair suggestions: -- Possibly re-connect orphaned records to page tree by setting their "pid" field to a valid page id. A lookup in the sys_refindex table can reveal if there are references to a orphaned record. If there are such references (from records that are not themselves orphans) you might consider to re-connect the record to the page tree, otherwise it should be safe to delete it. +- Possibly re-connect orphaned records to page tree by setting their "pid" field to a valid page id. A lookup in the sys_refindex table can reveal if there are references to an orphaned record. If there are such references (from records that are not themselves orphans) you might consider to re-connect the record to the page tree, otherwise it should be safe to delete it. If you want to get more detailed information, use the --verbose option.') ->addOption( diff --git a/typo3/sysext/rte_ckeditor/Documentation/Configuration/BestPractices.rst b/typo3/sysext/rte_ckeditor/Documentation/Configuration/BestPractices.rst index adb802a669c1d97c80ab068d695700b249600201..55260cf3dbe0b4e1ca3ed6e2c343557559fafc9e 100644 --- a/typo3/sysext/rte_ckeditor/Documentation/Configuration/BestPractices.rst +++ b/typo3/sysext/rte_ckeditor/Documentation/Configuration/BestPractices.rst @@ -12,7 +12,7 @@ Configuration Best Practices Use a Sitepackage extension =========================== -It is generally recommended to use a a sitepackage extension to +It is generally recommended to use a sitepackage extension to customize a TYPO3 website. The sitepackage contains configuration files for that site. diff --git a/typo3/sysext/t3editor/Resources/Private/tsref.xml b/typo3/sysext/t3editor/Resources/Private/tsref.xml index b3351c6bda22676b65d3fcc5b4b583361a9e459d..032fe7ee552db9a063b238cd3d9f219a11317b47 100644 --- a/typo3/sysext/t3editor/Resources/Private/tsref.xml +++ b/typo3/sysext/t3editor/Resources/Private/tsref.xml @@ -3290,7 +3290,7 @@ Additional Note: ONLY active if linkWrap is NOT set and file is NOT GIFBUILDER ( <type id="IMGTEXT" extends="cObjArray"> <property name="1" type="IMAGE"> <description><![CDATA[Rendering of the images -The register "IMAGE_NUM" is set with the number of image being rendered for each rendering of a image-object. Starting with zero. +The register "IMAGE_NUM" is set with the number of image being rendered for each rendering of an image-object. Starting with zero. The image-object should not be of type GIFBUILDER! Important: "file.import.current = 1" fetches the name of the images! @@ -3300,7 +3300,7 @@ Important: </property> <property name="2" type="IMAGE"> <description><![CDATA[Rendering of the images -The register "IMAGE_NUM" is set with the number of image being rendered for each rendering of a image-object. Starting with zero. +The register "IMAGE_NUM" is set with the number of image being rendered for each rendering of an image-object. Starting with zero. The image-object should not be of type GIFBUILDER! Important: "file.import.current = 1" fetches the name of the images! @@ -3310,7 +3310,7 @@ Important: </property> <property name="3" type="IMAGE"> <description><![CDATA[Rendering of the images -The register "IMAGE_NUM" is set with the number of image being rendered for each rendering of a image-object. Starting with zero. +The register "IMAGE_NUM" is set with the number of image being rendered for each rendering of an image-object. Starting with zero. The image-object should not be of type GIFBUILDER! Important: "file.import.current = 1" fetches the name of the images! @@ -3683,7 +3683,7 @@ This adds the tables tt_content, tt_address, tt_links, tx_myexttable]]></descrip <type id="SEARCHRESULT"> <property name="addExtUrlsAndShortCuts" type="boolean"> <description><![CDATA[If set, then the doktypes 3 and 4 (External URLS and Shortcuts) are added to the doktypes being searched. -However at this point in time, no pages will be select if they do not have at least one tt_content record on them! That is because the pages and tt_content (or other) table is joined. So there must at least one occurrence of a tt_content element on a External URL / Shortcut page for them to show up.]]></description> +However at this point in time, no pages will be select if they do not have at least one tt_content record on them! That is because the pages and tt_content (or other) table is joined. So there must at least one occurrence of a tt_content element on an External URL / Shortcut page for them to show up.]]></description> <default><![CDATA[ ]]></default> </property> @@ -5889,7 +5889,7 @@ If a "@" is in the string, it's an email If a period (.) is in the string AND if the period (.) is found before a slash (/) is found OR if a doubleslash is found, then it's a URL If a slash (/) is found, it's a filereference. If the file/directory does not exist on the server, the link is NOT made! -Now the input can be an alias or page-id. If the input is an integer it's a page-id, if it's two comma separated integers, it's a id/type pair, else it's an alias. For page-id's or aliases you can prepend a "#" mark with a number indication tt_content record number on the page to jump to! (if .section-property is present, it overrides this). +Now the input can be an alias or page-id. If the input is an integer it's a page-id, if it's two comma separated integers, it's an id/type pair, else it's an alias. For page-id's or aliases you can prepend a "#" mark with a number indication tt_content record number on the page to jump to! (if .section-property is present, it overrides this). If you insert only "#234" where "234" is the tt_content record number, it links to the current page-id Notice: The parameter can contain a keyword that hands over link generation to an external function. See example below this table!