@@ -14,7 +14,7 @@ of characters between the first and last character.
1414## Setting Up Translations
1515
1616There are only a few steps to go from a single-language application to a
17- multi-lingual application, the first of which is to make use of the
17+ multilingual application, the first of which is to make use of the
1818` __() ` function in your code. Below is an example of some code for a
1919single-language application:
2020
@@ -59,7 +59,7 @@ is selected.
5959
6060The core strings messages extracted from the CakePHP library can be stored
6161separately in a file named ** cake.po** in ` resources/locales/ ` .
62- The [ CakePHP localized library ] ( https://github.com/cakephp/localized ) houses
62+ The [ CakePHP Localized plugin ] ( https://github.com/cakephp/localized ) houses
6363translations for the client-facing translated strings in the core (the cake
6464domain). To use these files, link or copy them into their expected location:
6565` resources/locales/<locale>/cake.po ` . If your locale is incomplete or incorrect,
@@ -78,7 +78,7 @@ messages:
7878 de/
7979 my_plugin.po
8080
81- Translation folders can be the two or three letter ISO code of the language or
81+ Translation folders can be the two or three- letter ISO code of the language or
8282the full ICU locale name such as ` fr_FR ` , ` es_AR ` , ` da_DK ` which contains
8383both the language and the country where it is spoken.
8484
@@ -479,7 +479,7 @@ I18n::setTranslator(
479479
480480It is possible to continue using the same conventions CakePHP uses, but use
481481a message parser other than ` PoFileParser ` . For example, if you wanted to load
482- translation messages using ` YAML ` , you will first need to created the parser
482+ translation messages using ` YAML ` , you will first need to create the parser
483483class:
484484
485485``` php
@@ -642,7 +642,7 @@ Make sure you read the [Date & Time](../core-libraries/time) and [Number](../cor
642642sections to learn more about formatting options.
643643
644644By default, dates returned for the ORM results use the ` Cake\I18n\DateTime ` class,
645- so displaying them directly in you application will be affected by changing the
645+ so displaying them directly in your application will be affected by changing the
646646current locale.
647647
648648<a id =" parsing-localized-dates " ></a >
0 commit comments