Skip to content

Commit

Permalink
[TASK] Use TYPO3 v13 on Russian installation page (#341)
Browse files Browse the repository at this point in the history
Additionally, translate "If you want to install another version of TYPO3 find documentation by using the version selector on the left side of this page." instead of linking directly to a version.

Releases: main
  • Loading branch information
brotkrueml authored Mar 2, 2024
1 parent cff1177 commit f6a5b0d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Documentation/Localization.ru_RU/Installation/Install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
Выполнить Composer Create-Project
=================================

Приведенный ниже сценарий устанавливает TYPO3 v12, которая является последней версией CMS. Если вы хотите установить версию TYPO3 с долгосрочной поддержкой (LTS), обратитесь к :ref:`TYPO3 v11 Руководство по установке <t3start11:install>`.
Приведенный ниже сценарий устанавливает TYPO3 v13, которая является последней версией CMS.
Если вы хотите установить другую версию TYPO3, найдите документацию с помощью
селектора версий в левой части этой страницы.

На корневом уровне веб-сервера выполните следующую команду:

Expand All @@ -34,7 +36,7 @@

.. code-block:: bash
composer create-project typo3/cms-base-distribution example-project-directory "^12"
composer create-project typo3/cms-base-distribution example-project-directory "^13"
# Use console command to run the install process
# or use the Install Tool GUI (See below)
Expand All @@ -44,7 +46,7 @@

.. code-block:: powershell
composer create-project "typo3/cms-base-distribution:^12" example-project-directory
composer create-project "typo3/cms-base-distribution:^13" example-project-directory
# Use console command to run the install process
# or use the Install Tool GUI (See below)
Expand All @@ -61,14 +63,14 @@
cd example-project-directory
# Tell DDEV to create a new project of type "typo3"
# 'docroot' MUST be 'public' PHP 8.1 is required by TYPO3 v12
ddev config --project-type=typo3 --docroot=public --create-docroot --php-version 8.1
# 'docroot' MUST be 'public' PHP 8.2 is required by TYPO3 v13
ddev config --project-type=typo3 --docroot=public --create-docroot --php-version 8.2
# Start the server
ddev start
# Fetch a basic TYPO3 installation and its' dependencies
ddev composer create "typo3/cms-base-distribution:^12"
ddev composer create "typo3/cms-base-distribution:^13"
# Depending on your DDEV version the configuration file may have been
# created in an outdated location, you can move it with
Expand Down

0 comments on commit f6a5b0d

Please sign in to comment.