Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

[Backport 11.5] [TASK] Correct spelling of TYPO3 versions #563

Merged
merged 1 commit into from
Aug 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/10-Outlook/6-dispatching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -348,4 +348,4 @@ In the first example, Extbase will build the URL and call :php:`redirectToUri()`
Formerly the methods :php:`redirect` and :php:`redirectToUri` depended on
throwing a :php:`StopActionException`. This Exception has however been
deprecated with 11.3 as it is not PSR-7 conform. Therefore returning the
results of the redirect methods becomes mandatory with TYPO3 12.
results of the redirect methods becomes mandatory with TYPO3 v12.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ param notations in the comments as well:

.. deprecated:: 11.3
Using the :php:`@param` DocBlock annotation without adding the actual PHP
type declaration has been deprecated with TYPO3 11.3.
type declaration has been deprecated with TYPO3 v11.3.


.. index:: Action; Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ of the *Core Api Reference* manual.
.. index:: Files; Resources/Public/Icons/Extension.svg

In previous versions of TYPO3, the extension icon was named :file:`ext_icon.gif`.
Starting with TYPO3 8, you can choose between PNG or SVG format.
Starting with TYPO3 v8, you can choose between PNG or SVG format.
It is recommended to call the file :file:`Extension.png` or
:file:`Extension.svg` and store it in the directory :file:`Resources/Public/Icons/`.
The icon will be displayed in the extension manager and in the TYPO3 extension repository (TER).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Extbase fetches the type of this Argument from the method signature:
:php:`showAction(*\MyVendor\SjrOffers\Domain\Model\Offer* $offer)`.

.. deprecated:: 11.3
Starting with TYPO3 11.3 omitting the PHP type declaration and only using
Starting with TYPO3 v11.3 omitting the PHP type declaration and only using
the DocBlock annotation :php:`@param` has been deprecated.

After successfully assigning, the incoming argument's value has
Expand Down Expand Up @@ -446,7 +446,7 @@ displayed if the template is intending so.
.. tip::

Standard error messages of Extbase are not yet localized in
Version 1.2 (TYPO3 4.4). In the section "Localize error messages" in chapter 8
Version 1.2 (TYPO3 v4.4). In the section "Localize error messages" in chapter 8
a possibility is described how to translate them.

Using the hidden field :php:`__trustedProperties`, the Extbase property
Expand Down
2 changes: 1 addition & 1 deletion Documentation/8-Fluid/10-template-creation-by-example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ partial, the name of the form that relates to the error message is given as
.. sidebar:: Localize error messages

The error messages of the default validators that are delivered
with Extbase are not localized in version 1.2 (TYPO3 4.4). You can translate the
with Extbase are not localized in version 1.2 (TYPO3 v4.4). You can translate the
messages yourself by replacing the before described partial
``formErrors`` with the following code:

Expand Down
2 changes: 1 addition & 1 deletion Documentation/8-Fluid/2-using-different-output-formats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Recursive transformation of properties
--------------------------------------

.. versionadded:: 11.4
Since TYPO3 11.4 recursive tranformations of properties are available in
Since TYPO3 v11.4 recursive tranformations of properties are available in
the build-in JsonView.

The Extbase :php:`JsonView` is able to resolve recursive properties of
Expand Down
2 changes: 1 addition & 1 deletion Documentation/About.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ the title "Zukunftssichere TYPO3-Extensions mit Extbase und Fluid" by
Jochen Rau and Sebastian Kurfürst.
This book was translated into English by the TYPO3 community.

The latest version of the book (second edition) targeted TYPO3 6.2.
The latest version of the book (second edition) targeted TYPO3 v6.2.

Meanwhile, the book is no longer an exact translation. Several
the TYPO3 community made changes to reflect
Expand Down
2 changes: 1 addition & 1 deletion Documentation/c-FAQ/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ See `Send mail with FluidEmail <t3coreapi:send-mail-with-fluidemail>`__
Can I compare strings with the if view helper?
----------------------------------------------

Starting from TYPO3 6.1 this is possible as expected and you can use
Starting from TYPO3 v6.1 this is possible as expected and you can use
constant strings in if view helper as follows:

.. code-block:: html
Expand Down