Skip to content

Commit e268bdd

Browse files
committed
minor symfony#11218 use "application(s)" instead of "app(s)" (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- use "application(s)" instead of "app(s)" Commits ------- ca97daa use application instead of app
2 parents cf9fabf + ca97daa commit e268bdd

File tree

16 files changed

+27
-25
lines changed

16 files changed

+27
-25
lines changed

_build/redirection_map

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,3 +360,4 @@
360360
/components/weblink /components/web_link
361361
/frontend/encore/installation-no-flex /frontend/encore/installation
362362
/console/logging /console
363+
/frontend/encore/legacy-apps /frontend/encore/legacy-applications

best_practices/configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ paginated results.
9494
Use constants to define configuration options that rarely change.
9595

9696
The traditional approach for defining configuration options has caused many
97-
Symfony apps to include an option like the following, which would be used
98-
to control the number of posts to display on the blog homepage:
97+
Symfony applications to include an option like the following, which would be
98+
used to control the number of posts to display on the blog homepage:
9999

100100
.. code-block:: yaml
101101

best_practices/creating-the-project.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ Application Bundles
101101

102102
When Symfony 2.0 was released, most developers naturally adopted the symfony
103103
1.x way of dividing applications into logical modules. That's why many Symfony
104-
apps use bundles to divide their code into logical features: UserBundle,
104+
applications use bundles to divide their code into logical features: UserBundle,
105105
ProductBundle, InvoiceBundle, etc.
106106

107107
But a bundle is *meant* to be something that can be reused as a stand-alone
108108
piece of software. If UserBundle cannot be used *"as is"* in other Symfony
109-
apps, then it shouldn't be its own bundle. Moreover, if InvoiceBundle depends on
110-
ProductBundle, then there's no advantage to having two separate bundles.
109+
applications, then it shouldn't be its own bundle. Moreover, if InvoiceBundle
110+
depends on ProductBundle, then there's no advantage to having two separate bundles.
111111

112112
.. best-practice::
113113

best_practices/introduction.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ What is this Guide About?
1919
-------------------------
2020

2121
This guide aims to fix that by describing the **best practices for developing
22-
web apps with the Symfony full-stack Framework**. These are best practices that
23-
fit the philosophy of the framework as envisioned by its original creator
22+
web applications with the Symfony full-stack Framework**. These are best practices
23+
that fit the philosophy of the framework as envisioned by its original creator
2424
`Fabien Potencier`_.
2525

2626
.. note::
@@ -44,8 +44,8 @@ then **extend and fit to your specific needs**:
4444

4545
We know that old habits die hard and some of you will be shocked by some
4646
of these best practices. But by following these, you'll be able to develop
47-
apps faster, with less complexity and with the same or even higher quality.
48-
It's also a moving target that will continue to improve.
47+
appications faster, with less complexity and with the same or even higher
48+
quality. It's also a moving target that will continue to improve.
4949

5050
Keep in mind that these are **optional recommendations** that you and your
5151
team may or may not follow to develop Symfony applications. If you want to

contributing/community/releases.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Symfony releases follow the `semantic versioning`_ strategy and they are
88
published through a *time-based model*:
99

1010
* A new **Symfony patch version** (e.g. 2.8.15, 4.1.7) comes out roughly every
11-
month. It only contains bug fixes, so you can safely upgrade your apps;
11+
month. It only contains bug fixes, so you can safely upgrade your applications;
1212
* A new **Symfony minor version** (e.g. 2.8, 3.2, 4.1) comes out every *six months*:
1313
one in *May* and one in *November*. It contains bug fixes and new features, but
14-
it doesn't include any breaking change, so you can safely upgrade your apps;
14+
it doesn't include any breaking change, so you can safely upgrade your applications;
1515
* A new **Symfony major version** (e.g. 3.0, 4.0) comes out every *two years*.
1616
It can contain breaking changes, so you may need to do some changes in your
17-
apps before upgrading.
17+
applications before upgrading.
1818

1919
.. tip::
2020

controller.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ and many others that you'll learn about next.
152152
Symfony services. This forces you to write more robust code to access services.
153153

154154
Moreover, in Symfony 4.2 ``Controller`` was deprecated in favor of
155-
``AbstractController``, so using the latter will make your apps future-proof.
155+
``AbstractController``, so using the latter will make your applications
156+
future-proof.
156157

157158
.. versionadded:: 3.3
158159

email/gmail.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ parameters.
122122

123123
If your Gmail account uses 2-Step-Verification, you must `generate an App password`_
124124
and use it as the value of the ``mailer_password`` parameter. You must also ensure
125-
that you `allow less secure apps to access your Gmail account`_.
125+
that you `allow less secure applications to access your Gmail account`_.
126126

127127
.. seealso::
128128

129129
See the :doc:`Swiftmailer configuration reference </reference/configuration/swiftmailer>`
130130
for more details.
131131

132132
.. _`generate an App password`: https://support.google.com/accounts/answer/185833
133-
.. _`allow less secure apps to access your Gmail account`: https://support.google.com/accounts/answer/6010255
133+
.. _`allow less secure applications to access your Gmail account`: https://support.google.com/accounts/answer/6010255

form/form_customization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Disabling Usage of Globally Defined Themes
303303
Sometimes you may want to disable the use of the globally defined form themes in order
304304
to have more control over the rendering of a form. You might want this, for example,
305305
when creating an admin interface for a bundle which can be installed on a wide range
306-
of Symfony apps (and so you can't control what themes are defined globally).
306+
of Symfony applications (and so you can't control what themes are defined globally).
307307

308308
You can do this by including the ``only`` keyword after the list of form themes:
309309

frontend.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Guides
6969

7070
* :doc:`Using Bootstrap CSS & JS </frontend/encore/bootstrap>`
7171
* :doc:`Creating Page-Specific CSS/JS </frontend/encore/page-specific-assets>`
72-
* :doc:`jQuery and Legacy Applications </frontend/encore/legacy-apps>`
72+
* :doc:`jQuery and Legacy Applications </frontend/encore/legacy-applications>`
7373
* :doc:`Passing Information from Twig to JavaScript </frontend/encore/server-data>`
7474
* :doc:`webpack-dev-server and Hot Module Replacement (HMR) </frontend/encore/dev-server>`
7575
* :doc:`Adding custom loaders & plugins </frontend/encore/custom-loaders-plugins>`

frontend/encore/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ or ``jQuery`` to be a global variable. But, when you use Webpack and ``require('
9292
no global variables are set.
9393

9494
The fix depends on if the error is happening in your code or inside some third-party
95-
code that you're using. See :doc:`/frontend/encore/legacy-apps` for the fix.
95+
code that you're using. See :doc:`/frontend/encore/legacy-applications` for the fix.
9696

9797
Uncaught ReferenceError: webpackJsonp is not defined
9898
----------------------------------------------------

frontend/encore/simple-example.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ To import values, use ``import``:
212212
Page-Specific JavaScript or CSS (Multiple Entries)
213213
--------------------------------------------------
214214

215-
So far, you only have one final JavaScript file: ``app.js``. For simple apps or
216-
SPA's (Single Page Applications), that might be fine! However, as your app grows,
215+
So far, you only have one final JavaScript file: ``app.js``. For small applications
216+
or SPA's (Single Page Applications), that might be fine! However, as your app grows,
217217
you may want to have page-specific JavaScript or CSS (e.g. checkout, account,
218218
etc.). To handle this, create a new "entry" JavaScript file for each page:
219219

page_creation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ What's Next?
234234
------------
235235

236236
Congrats! You're already starting to master Symfony and learn a whole new
237-
way of building beautiful, functional, fast and maintainable apps.
237+
way of building beautiful, functional, fast and maintainable applications.
238238

239239
Ok, time to finish mastering the fundamentals by reading these articles:
240240

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2228,7 +2228,7 @@ A list of workflows to be created by the framework extension:
22282228
22292229
.. seealso::
22302230

2231-
See also the article about :doc:`using workflows in Symfony apps </workflow>`.
2231+
See also the article about :doc:`using workflows in Symfony applications </workflow>`.
22322232

22332233
.. _reference-workflows-enabled:
22342234

setup.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ Installing the Symfony Demo or Other Distributions
249249
--------------------------------------------------
250250

251251
You've already downloaded the `Symfony Standard Edition`_: the default starting project
252-
for all Symfony apps. You'll use this project throughout the documentation to build
253-
your app!
252+
for all Symfony applications. You'll use this project throughout the documentation to
253+
build your application!
254254

255255
Symfony also provides some other projects and starting skeletons that you can use:
256256

web_link.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ automatically trigger a push for the related file in the same HTTP/2 connection.
9797

9898
Popular proxy services and CDNs including `Cloudflare`_, `Fastly`_ and `Akamai`_
9999
also leverage this feature. It means that you can push resources to clients and
100-
improve performance of your apps in production right now.
100+
improve performance of your applications in production right now.
101101

102102
If you want to prevent the push but let the browser preload the resource by
103103
issuing an early separate HTTP request, use the ``nopush`` option:

0 commit comments

Comments
 (0)