Skip to content

Commit cec07f2

Browse files
[TASK] Language checks
Releases: main
1 parent baf4d96 commit cec07f2

File tree

4 files changed

+33
-35
lines changed

4 files changed

+33
-35
lines changed

Documentation/Installation/Index.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Prepare / Install local TYPO3 project
88
=====================================
99

1010
Setting up your local TYPO3 project requires a few simple steps.
11-
This chapter guides you through preparing your development environment,
11+
This chapter will guide you through preparing your development environment,
1212
installing TYPO3, and getting ready to build your first website.
1313

14-
The rest of the Getting Started guide assumes that TYPO3 was installed locally
15-
using DDEV and Composer as described here.
14+
The rest of the Getting Started guide assumes that TYPO3 has been installed locally
15+
using DDEV and Composer, as described here.
1616

17-
If you prefer a different installation method (for example, manual installation
18-
on a server), see the full
17+
If you prefer a to use a different installation method (for example, manual
18+
installation on a server), see the full
1919
`TYPO3 installation guide <https://docs.typo3.org/permalink/t3coreapi:installation-index>`_.
2020

2121
.. toctree::
@@ -40,7 +40,7 @@ on a server), see the full
4040

4141
.. card:: :ref:`Using DDEV <ddev>`
4242

43-
Learn how to install, update, and manage DDEV for running your TYPO3
43+
Learn how to install, update, and manage DDEV to run your TYPO3
4444
projects locally.
4545

4646
.. card:: :ref:`Installing TYPO3 with DDEV <install>`
@@ -50,7 +50,7 @@ on a server), see the full
5050

5151
.. card:: :ref:`Setting up TYPO3 after installation <typo3-setup>`
5252

53-
Complete the TYPO3 setup by creating an admin user and configuring
53+
Complete TYPO3 setup by creating an admin user and configuring
5454
initial options.
5555

5656
.. card:: :ref:`Choosing a TYPO3 version <typo3-version>`
@@ -81,12 +81,12 @@ Advanced installation topics
8181

8282
.. card:: :ref:`Application context <application-context>`
8383

84-
Use TYPO3's application context to manage different settings for
84+
Use the TYPO3 application context to manage different settings for
8585
development, testing, and production.
8686

8787
.. card:: `System Requirements <https://docs.typo3.org/permalink/t3coreapi:system-requirements>`_
8888

89-
If you install TYPO3 manually or deploy to a production server, check
89+
If you want to install TYPO3 manually or deploy to a production server, check
9090
the full system requirements for PHP, database, and web server.
9191

9292
.. card:: `Tuning TYPO3 <https://docs.typo3.org/permalink/t3coreapi:tunetypo3>`_

Documentation/Installation/Install.rst

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Installing TYPO3 with DDEV
1111
This guide provides step-by-step instructions for installing TYPO3 using DDEV
1212
and Composer.
1313

14-
If DDEV is not installed on your local machine yet, see
14+
If DDEV is not yet installed on your local machine, see
1515
`Installing and Using DDEV <https://docs.typo3.org/permalink/t3start:ddev>`_.
1616

1717
DDEV is intended for local development only.
1818
To deploy your TYPO3 site to a production server, see:
1919
`Deploying TYPO3 <https://docs.typo3.org/permalink/t3start:deployment>`_.
2020

2121
Throughout the Getting Started Tutorial, we assume that you are running TYPO3
22-
locally with DDEV and have installed it using Composer, as described below.
22+
locally with DDEV and have installed it using Composer.
2323

2424
For an overview of alternative installation methods, see the
2525
`TYPO3 installation overview in the TYPO3 Explained manual <https://docs.typo3.org/permalink/t3coreapi:installation-index>`_.
@@ -31,7 +31,7 @@ For an overview of alternative installation methods, see the
3131
Quick Start: TYPO3 Installation with DDEV
3232
==========================================
3333

34-
The following commands create a new TYPO3 project, initialize DDEV, install
34+
The following commands will create a new TYPO3 project, initialize DDEV, install
3535
TYPO3 via Composer, and run the setup. Copy and paste them into your terminal.
3636

3737
.. code-block:: bash
@@ -57,10 +57,9 @@ TYPO3 via Composer, and run the setup. Copy and paste them into your terminal.
5757
Next steps: `TYPO3 setup on first installation <https://docs.typo3.org/permalink/t3start:typo3-setup>`_
5858

5959
.. note::
60-
The directory where you run these commands must be initially empty.
60+
The directory that you run these commands in must be empty.
6161
Do not initialize Git or open the folder in an IDE before running the
62-
commands, as both actions may create hidden files and cause the directory
63-
to become non-empty.
62+
commands, as these may create files in the directory (for example hidden files).
6463

6564
.. _installation-ddev-tutorial:
6665

@@ -74,7 +73,7 @@ Video: Installing TYPO3 with DDEV
7473

7574
The video demonstrates how to install TYPO3 v11 LTS with DDEV.
7675

77-
Although TYPO3 v11 is outdated, the installation process remains largely
76+
Although TYPO3 v11 is outdated, the installation process is largely
7877
the same for newer versions.
7978

8079
.. youtube:: HW7J3G1SqZw
@@ -92,18 +91,17 @@ Create an empty directory for your TYPO3 project and change into it:
9291
cd my_project
9392
9493
.. note::
95-
The directory where you run the following commands must be initially empty.
94+
The directory where you run the following commands must be empty.
9695

9796
Do not initialize Git or open the folder in an IDE before running the
98-
commands, as both actions may create hidden files and cause the directory
99-
to become non-empty.
97+
commands, as these may create files in the directory (for example hidden files).
10098

10199
.. _installation-ddev-project:
102100

103101
Create a New DDEV Project
104102
--------------------------
105103

106-
Initialize a new DDEV project. The ``ddev config`` command will prompt for details about your setup.
104+
Initialize a new DDEV project. The ``ddev config`` command will prompt you for details of your setup.
107105
TYPO3 is included in the list of preconfigured project types.
108106

109107
.. code-block:: bash
@@ -114,8 +112,8 @@ Docroot Location
114112
The docroot is the folder containing the files accessible to the webserver,
115113
including the entry point :file:`index.php`. It is commonly named `public`.
116114

117-
Do not change the docroot during this installation process. It is possible
118-
to change it later if necessary, however most guides assume your docroot is
115+
Do not change the docroot during this installation process. You
116+
can change it later if necessary, however most guides assume your docroot is
119117
called `public`.
120118

121119
Project Type

Documentation/Installation/Setup.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
TYPO3 setup on first installation
88
=================================
99

10-
Depending on your preference, you can set up TYPO3 either via a console command
11-
or by using the web-based Install Tool.
10+
You can set up TYPO3 either via a console command or by using the web-based
11+
Install Tool.
1212

1313
.. contents::
1414
:local:
@@ -77,8 +77,8 @@ After completing the setup, TYPO3 will run in the "Production" application
7777
context by default.
7878

7979
For local development, it is recommended to switch to the "Development/DDEV"
80-
context to enable better error reporting, debugging features, and developer-friendly
81-
behavior.
80+
context for better error reporting, debugging features, and developer-friendly
81+
features.
8282

8383
Edit your :file:`.ddev/config.yaml` and add:
8484

Documentation/Installation/UsingDdev.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
Installing and using DDEV
88
=========================
99

10-
DDEV is a powerful, flexible tool for local TYPO3 development. It automates
10+
DDEV is a powerful tool for local TYPO3 development. It automates
1111
the setup of PHP, database, webserver, and other services using Docker, making
12-
local development easy, fast, and consistent across all platforms.
12+
local development easy, fast, and consistent across platforms.
1313

1414
This guide assumes that you are setting up TYPO3 locally using DDEV.
1515
For deploying TYPO3 to a live server, see
1616
`Deploying TYPO3 <https://docs.typo3.org/permalink/t3start:deployment>`_.
1717

18-
Some hosting providers also offer services that support hosting DDEV projects,
18+
Some hosting providers also host DDEV projects,
1919
allowing you to develop locally and deploy seamlessly.
2020

2121
.. note::
22-
Like TYPO3, DDEV is open source software that exists because of the
22+
Like TYPO3, DDEV is open source software that only exists due to the
2323
generosity of community members and sponsors. Read more about
2424
`how to support DDEV <https://ddev.com/support-ddev/>`__.
2525

@@ -48,7 +48,7 @@ instructions:
4848
`Installing DDEV <https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/>`_
4949

5050
This page covers installation for macOS, Linux, Windows, and WSL, and is kept
51-
up-to-date with the latest supported methods.
51+
up-to-date.
5252

5353
.. _ddev-check-installation:
5454

@@ -95,8 +95,8 @@ Managing the database
9595
======================
9696

9797
Running :bash:`ddev start` automatically creates a database for you.
98-
DDEV also creates the file :file:`config/system/additional.php`, where it
99-
configures the database credentials.
98+
DDEV also creates the file :file:`config/system/additional.php`, containing the
99+
database credentials.
100100

101101
You can access your database using any local database client.
102102

@@ -106,15 +106,15 @@ On Windows, you can quickly open the database in HeidiSQL:
106106
107107
ddev heidisql
108108
109-
Other popular database clients include TablePlus, Sequel Ace, or DBeaver.
109+
Other popular database clients include TablePlus, Sequel Ace, and DBeaver.
110110

111111
For more details, see the DDEV documentation on
112112
`Database GUIs
113113
<https://ddev.readthedocs.io/en/stable/users/usage/database-management/#database-guis/>`__.
114114

115115
.. _ddev-sending-email:
116116

117-
Sending e-mail
117+
Sending emails
118118
==============
119119

120120
DDEV captures outgoing mails and stores them for review.

0 commit comments

Comments
 (0)