Skip to content

Commit 8c0b237

Browse files
committed
Use plural grammar/spelling where intended
1 parent a85d353 commit 8c0b237

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

_posts/05-06-01-Internationalization-and-Localization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ install or sport additional features or i18n file formats. In this document, we
4141
PHP core, but here we list others for completion:
4242

4343
- [aura/intl][aura-intl]: Provides internationalization (I18N) tools, specifically package-oriented per-locale message
44-
translation. It uses array formats for message. Does not provide a message extractor, but does provide advanced
44+
translation. It uses array formats for messages. Does not provide a message extractor, but does provide advanced
4545
message formatting via the `intl` extension (including pluralized messages).
4646
- [oscarotero/Gettext][oscarotero]: Gettext support with an OO interface; includes improved helper functions, powerful
4747
extractors for several file formats (some of them not supported natively by the `gettext` command), and can also export
@@ -248,7 +248,7 @@ the actual interface. Given that, let's tie together what we have discussed so f
248248
- [`gettext()`][func] simply translates a `msgid` into its corresponding `msgstr` for a given language. There's also
249249
the shorthand function `_()` that works the same way;
250250
- [`ngettext()`][n_func] does the same but with plural rules;
251-
- there's also [`dgettext()`][d_func] and [`dngettext()`][dn_func], that allows you to override the domain for a single
251+
- There are also [`dgettext()`][d_func] and [`dngettext()`][dn_func], that allow you to override the domain for a single
252252
call. More on domain configuration in the next example.
253253

254254
#### 2. A sample setup file (`i18n_setup.php` as used above), selecting the correct locale and configuring Gettext

_posts/12-05-01-Building-your-Application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Managing and configuring servers can be a daunting task when faced with many ser
4949

5050
[Ansible] is a tool that manages your infrastructure through YAML files. It's simple to get started with and can manage complex and large scale applications. There is an API for managing cloud instances and it can manage them through a dynamic inventory using certain tools.
5151

52-
[Puppet] is a tool that has its own language and file types for managing servers and configurations. It can be used in a master/client setup or it can be used in a "master-less" mode. In the master/client mode the clients will poll the central master(s) for new configuration on set intervals and update itself if necessary. In the master-less mode you can push changes to your nodes.
52+
[Puppet] is a tool that has its own language and file types for managing servers and configurations. It can be used in a master/client setup or it can be used in a "master-less" mode. In the master/client mode the clients will poll the central master(s) for new configuration on set intervals and update themselves if necessary. In the master-less mode you can push changes to your nodes.
5353

5454
[Chef] is a powerful Ruby based system integration framework that you can build your whole server environment or virtual boxes with. It integrates well with Amazon Web Services through their service called OpsWorks.
5555

_posts/13-03-01-Docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following will download a fully functional Apache installation with the late
2222
docker run -d --name my-php-webserver -p 8080:80 -v /path/to/your/php/files:/var/www/html/ php:apache
2323
{% endhighlight %}
2424

25-
This will initialize and launch your container. `-d` makes it runs in the background. To stop and start it, simply run `docker stop my-php-webserver` and `docker start my-php-webserver` (the other parameters are not needed again).
25+
This will initialize and launch your container. `-d` makes it run in the background. To stop and start it, simply run `docker stop my-php-webserver` and `docker start my-php-webserver` (the other parameters are not needed again).
2626

2727
### Learn more about Docker
2828

pages/Design-Patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ and gives you a central place to hook in code that should be run for every reque
197197

198198
## Model-View-Controller
199199

200-
The model-view-controller (MVC) pattern and its relatives HMVC and MVVM lets you break up code into logical objects
200+
The model-view-controller (MVC) pattern and its relatives HMVC and MVVM let you break up code into logical objects
201201
that serve very specific purposes. Models serve as a data access layer where data is fetched and returned in formats
202202
usable throughout your application. Controllers handle the request, process the data returned from models and load
203203
views to send in the response. And views are display templates (markup, xml, etc) that are sent in the response to the

0 commit comments

Comments
 (0)